:root {
  --bg-dark: #05070A;
  --bg-soft-dark: #0B1117;
  --sky-blue: #7EC8E3;
  --sky-blue-light: #B9E8F7;
  --deep-blue: #1E5F7A;
  --steel-blue: #3A6F86;
  --text-light: #F4FBFF;
  --text-muted: #AFC7D3;
  --border-blue: rgba(126, 200, 227, 0.35);
  --gold: var(--sky-blue);
  --gold-light: var(--sky-blue-light);
  --cream: var(--text-light);
  --sand: var(--sky-blue-light);
  --olive: var(--deep-blue);
  --bronze: var(--deep-blue);
  --olive-deep: var(--bg-soft-dark);
  --card-dark: #081018;
  --black: var(--bg-dark);
  --black-2: var(--bg-soft-dark);
  --white: var(--text-light);
  --mist: var(--sky-blue-light);
  --gold-2: var(--sky-blue-light);
  --champagne: var(--text-light);
  --line: var(--border-blue);
  --muted: var(--text-muted);
  --soft: rgba(126, 200, 227, 0.1);
  --green: var(--olive);
  --green-2: var(--olive-deep);
  --burgundy: var(--steel-blue);
  --radius: 999px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(126, 200, 227, 0.16), transparent 30rem),
    radial-gradient(circle at 86% 14%, rgba(30, 95, 122, 0.18), transparent 26rem),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-soft-dark) 48%, var(--bg-dark) 100%);
  font-family: var(--sans);
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background:
    radial-gradient(circle at 50% 46%, rgba(126, 200, 227, 0.2), transparent 24rem),
    linear-gradient(180deg, var(--bg-dark), var(--bg-soft-dark));
  transition: opacity 700ms ease, visibility 700ms ease;
}

.intro-loader img {
  width: min(330px, 76vw);
  padding: 12px 16px;
  border: 1px solid rgba(126, 200, 227, 0.32);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(244, 251, 255, 0.98), rgba(185, 232, 247, 0.9));
  animation: loaderLogoReveal 1100ms cubic-bezier(0.19, 1, 0.22, 1) both;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46), 0 0 42px rgba(126, 200, 227, 0.18);
}

.intro-loader-text {
  position: relative;
  margin: 0;
  overflow: hidden;
  color: #ad563f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 4.8vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: capitalize;
  animation: loaderTextReveal 1000ms cubic-bezier(0.19, 1, 0.22, 1) 260ms both;
}

.intro-loader-text::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 248, 236, 0.86) 48%, transparent 68%);
  transform: translateX(-120%);
  animation: loaderTextShine 1700ms ease-in-out 700ms infinite;
  pointer-events: none;
}

.intro-loader span {
  width: min(260px, 62vw);
  height: 1px;
  overflow: hidden;
  background: rgba(173, 86, 63, 0.24);
}

.intro-loader span::after {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  animation: loaderLine 1200ms ease-in-out infinite;
}

.is-loaded .intro-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 2400;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #686844, #ad6a43, #d8b36f, #686844);
  box-shadow: 0 0 18px rgba(104, 104, 68, 0.34);
}

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

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

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 5000;
  width: auto;
  height: auto;
  margin: 16px;
  padding: 10px 14px;
  clip: auto;
  color: var(--black);
  background: var(--champagne);
}

.container {
  width: min(1240px, calc(100% - 42px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 104px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 0 clamp(18px, 4vw, 46px);
  background: rgba(5, 7, 10, 0.86);
  border-bottom: 1px solid rgba(126, 200, 227, 0.34);
  backdrop-filter: blur(16px);
  animation: headerReveal 850ms ease both;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 10, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  padding: 5px 8px;
  border: 1px solid rgba(126, 200, 227, 0.48);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(244, 251, 255, 0.98), rgba(185, 232, 247, 0.88));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28), 0 0 28px rgba(126, 200, 227, 0.1);
}

.brand-logo {
  width: clamp(124px, 11vw, 158px);
  height: auto;
  object-fit: contain;
}

.nav-strip {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(244, 251, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 800;
}

.nav-strip,
.ticker,
.gallery-grid {
  scrollbar-width: none;
}

.nav-strip::-webkit-scrollbar,
.ticker::-webkit-scrollbar,
.gallery-grid::-webkit-scrollbar {
  display: none;
}

.nav-strip a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pill {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 22px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.15;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

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

.pill svg {
  width: 18px;
  height: 18px;
}

.pill-outline {
  border-color: rgba(126, 200, 227, 0.55);
  color: var(--cream);
  background: linear-gradient(135deg, var(--olive), var(--olive-deep));
}

.pill-gold {
  color: var(--black);
  border-color: var(--sky-blue-light);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--bronze));
  box-shadow: 0 14px 35px rgba(126, 200, 227, 0.28), 0 0 34px rgba(126, 200, 227, 0.18);
}

.pill-white {
  color: var(--cream);
  border-color: rgba(126, 200, 227, 0.55);
  background: linear-gradient(135deg, var(--olive), var(--olive-deep));
}

.pill-gold:hover {
  filter: brightness(1.08) saturate(1.06);
  box-shadow: 0 18px 42px rgba(126, 200, 227, 0.36), 0 0 42px rgba(185, 232, 247, 0.24);
}

.pill-outline:hover,
.pill-white:hover {
  border-color: rgba(185, 232, 247, 0.78);
  box-shadow: 0 14px 36px rgba(30, 95, 122, 0.34), 0 0 24px rgba(126, 200, 227, 0.12);
}

.menu-button {
  width: 48px;
  height: 48px;
  display: grid;
  gap: 6px;
  place-content: center;
  border: 0;
  border-radius: 50%;
  color: var(--cream);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 32px;
  height: 2px;
  background: currentColor;
}

.menu-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 1600;
  width: min(430px, 100%);
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 74px 34px;
  background:
    radial-gradient(circle at 20% 18%, rgba(126, 200, 227, 0.13), transparent 22rem),
    linear-gradient(180deg, rgba(5, 7, 10, 0.98), rgba(30, 95, 122, 0.72));
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 240ms ease;
}

.menu-panel.is-open {
  transform: translateX(0);
}

.menu-panel a {
  padding: 15px 0;
  border-bottom: 1px solid rgba(126, 200, 227, 0.22);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.1;
}

.menu-close {
  position: absolute;
  top: 22px;
  right: 24px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 15px;
  color: var(--cream);
  background: transparent;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12% -10% auto;
  z-index: 1;
  height: 46%;
  opacity: 0.46;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 20%, rgba(185, 232, 247, 0.18) 46%, transparent 62%),
    linear-gradient(75deg, transparent 34%, rgba(30, 95, 122, 0.22) 50%, transparent 68%);
  mix-blend-mode: screen;
  transform: translateX(-28%);
  animation: heroLightSweep 7s ease-in-out 900ms infinite;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.03);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(185, 232, 247, 0.18), transparent 24%),
    radial-gradient(circle at 84% 78%, rgba(30, 95, 122, 0.42), transparent 32%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.36) 0%, rgba(5, 7, 10, 0.28) 42%, rgba(5, 7, 10, 0.9) 100%),
    linear-gradient(90deg, rgba(5, 7, 10, 0.92), rgba(5, 7, 10, 0.1) 70%);
  animation: shadePulse 8s ease-in-out infinite alternate;
}

.hero-shell {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding: 118px 0 76px;
}

.hero-kicker,
.eyebrow {
  margin: 0;
  max-width: 42ch;
  color: var(--gold-light);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  width: min(1120px, 100%);
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 12.2vw, 11rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 0 34px rgba(126, 200, 227, 0.12), 0 18px 52px rgba(0, 0, 0, 0.36);
}

.hero-lower {
  width: min(960px, 100%);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.hero-lower p {
  margin: 0;
  max-width: 390px;
  color: rgba(244, 251, 255, 0.9);
  font-size: 1.08rem;
  font-weight: 800;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(980px, 100%);
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(8, 16, 24, 0.56);
  backdrop-filter: blur(12px);
}

.hero-badges li {
  display: grid;
  min-height: 68px;
  place-items: center;
  padding: 14px;
  text-align: center;
  font-weight: 900;
}

.ticker {
  display: flex;
  gap: 0;
  overflow: hidden;
  color: var(--black);
  background: linear-gradient(90deg, var(--sand), var(--gold-light), var(--gold), var(--sand));
  background-size: 180% 100%;
  animation: champagneFlow 9s ease-in-out infinite alternate;
}

.ticker span {
  flex: 1 0 25%;
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-right: 1px solid rgba(5, 7, 10, 0.25);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 2.2rem);
  font-weight: 900;
  text-align: center;
}

.section {
  padding: clamp(76px, 10vw, 132px) 0;
}

.editorial-grid,
.location-grid,
.enquiry-grid,
.trust-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

h2 {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6.5vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
  line-height: 1.08;
}

p {
  color: var(--muted);
}

.intro-copy p {
  margin-top: 0;
  font-size: 1.08rem;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-light);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.highlights,
.amenities,
.investment,
.trust-faq {
  background: var(--black-2);
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 42px;
}

.section-head.compact {
  width: min(780px, 100%);
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.number-grid article,
.amenity-grid article,
.lead-form,
details,
.modal-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(244, 251, 255, 0.045), rgba(30, 95, 122, 0.14)),
    var(--card-dark);
  backdrop-filter: blur(18px);
}

.number-grid article,
.amenity-grid article,
.investment-grid span,
.landmarks span,
blockquote,
details,
.gallery-grid figure {
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.number-grid article:hover,
.amenity-grid article:hover,
.investment-grid span:hover,
.landmarks span:hover,
blockquote:hover,
details:hover,
.gallery-grid figure:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 232, 247, 0.62);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), 0 0 28px rgba(126, 200, 227, 0.12);
}

.gallery-grid img,
.visual-band img {
  transition: transform 900ms cubic-bezier(0.19, 1, 0.22, 1), filter 900ms ease;
}

.gallery-grid figure:hover img,
.visual-band img:hover {
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.045);
}

.has-motion .reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 900ms ease var(--reveal-delay, 0ms),
    filter 900ms ease var(--reveal-delay, 0ms),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.has-motion .reveal.reveal-left {
  transform: translateY(24px) scale(0.985);
}

.has-motion .reveal.reveal-right {
  transform: translateY(24px) scale(0.985);
}

.has-motion .reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.has-motion .reveal:not(.is-visible),
.has-motion .reveal.reveal-left:not(.is-visible),
.has-motion .reveal.reveal-right:not(.is-visible) {
  transform: translateY(24px) scale(0.985);
}

.number-grid article {
  min-height: 360px;
  padding: 32px;
  display: grid;
  align-content: space-between;
}

.number-grid span {
  color: rgba(126, 200, 227, 0.36);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.8;
}

.number-grid p {
  margin-bottom: 0;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
}

.signal-row span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: var(--black);
  background: linear-gradient(135deg, var(--sand), var(--gold-light), var(--gold));
  font-weight: 900;
  text-align: center;
}

.visual-band {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  align-items: stretch;
  min-height: 560px;
  border-block: 1px solid var(--line);
}

.visual-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-band div {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(244, 251, 255, 0.96), rgba(185, 232, 247, 0.9)),
    var(--mist);
  color: var(--black);
}

.visual-band h2 {
  color: var(--black);
  font-size: clamp(2.1rem, 4vw, 4.6rem);
}

.visual-band p:not(.eyebrow) {
  color: rgba(5, 7, 10, 0.7);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.amenity-grid article {
  min-height: 230px;
  padding: 25px;
}

.amenity-grid svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.amenity-grid h3 {
  margin-top: 24px;
  font-size: 1.45rem;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.gallery-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 16px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-weight: 900;
}

.gallery-tabs button.active {
  color: var(--black);
  border-color: rgba(185, 232, 247, 0.82);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--bronze));
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-auto-flow: dense;
  grid-auto-rows: 300px;
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card-dark);
}

.gallery-grid figure:first-child,
.gallery-grid figure:nth-child(4),
.gallery-grid figure:nth-child(12),
.gallery-grid figure:nth-child(19) {
  grid-row: span 2;
}

.gallery-grid figure:nth-child(7),
.gallery-grid figure:nth-child(15) {
  grid-column: span 2;
}

.gallery-grid figure[hidden] {
  display: none;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 14px;
  border-radius: var(--radius);
  color: var(--black);
  background: linear-gradient(135deg, var(--text-light), var(--sky-blue-light), var(--sky-blue));
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.location {
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 251, 255, 0.42), transparent 28rem),
    linear-gradient(135deg, var(--sand), var(--gold));
  color: var(--black);
}

.location p,
.location .eyebrow {
  color: rgba(5, 7, 10, 0.65);
}

.location .eyebrow {
  color: var(--bronze);
}

.landmarks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.landmarks span {
  min-height: 106px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(5, 7, 10, 0.25);
  background: rgba(244, 251, 255, 0.48);
}

.landmarks strong {
  display: block;
}

.investment h2 {
  width: min(1100px, 100%);
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(980px, 100%);
  margin: 34px 0;
}

.investment-grid span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 900;
  text-align: center;
}

.enquiry {
  background:
    radial-gradient(circle at 10% 20%, rgba(58, 111, 134, 0.24), transparent 28rem),
    radial-gradient(circle at 90% 82%, rgba(30, 95, 122, 0.36), transparent 30rem),
    linear-gradient(180deg, var(--bg-dark), var(--bg-soft-dark));
}

.contact-stack {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-stack a {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-weight: 900;
}

.contact-stack svg {
  width: 20px;
  color: var(--gold);
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
}

.lead-form label,
.brochure-form {
  display: grid;
  gap: 8px;
}

.lead-form span {
  font-size: 0.82rem;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.brochure-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(126, 200, 227, 0.35);
  border-radius: 0;
  padding: 12px 13px;
  color: var(--white);
  background: var(--bg-soft-dark);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.brochure-form input,
.modal-panel input {
  color: var(--cream);
  background: var(--bg-soft-dark);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder,
.brochure-form input::placeholder,
.modal-panel input::placeholder {
  color: var(--text-muted);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.brochure-form input:focus,
.modal-panel input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(126, 200, 227, 0.14), 0 0 26px rgba(126, 200, 227, 0.12);
  background: var(--bg-soft-dark);
}

.lead-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.86rem;
}

.trust-faq-grid {
  align-items: start;
}

.quotes {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

blockquote {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.08;
}

details {
  margin-top: 10px;
  padding: 0 18px;
}

summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 900;
}

details p {
  margin-top: 0;
}

.site-footer {
  padding: 70px 0 32px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 10%, rgba(30, 95, 122, 0.18), transparent 24rem),
    var(--bg-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.9fr;
  gap: 42px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 1rem;
  font-family: var(--sans);
  color: var(--cream);
}

.footer-grid a {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-grid p {
  max-width: 430px;
}

.footer-whatsapp {
  color: var(--gold) !important;
  font-weight: 900;
}

.disclaimer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 900;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(126, 200, 227, 0.55);
  color: var(--cream);
  background: linear-gradient(135deg, var(--olive), var(--olive-deep));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38), 0 0 32px rgba(126, 200, 227, 0.18);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 10, 0.82);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(520px, 100%);
  padding: clamp(26px, 5vw, 42px);
  color: var(--cream);
  background:
    radial-gradient(circle at 14% 0%, rgba(126, 200, 227, 0.16), transparent 18rem),
    var(--card-dark);
}

.modal-panel h2 {
  color: var(--cream);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.modal-panel p {
  color: var(--text-muted);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 38px;
  border: 1px solid rgba(126, 200, 227, 0.35);
  border-radius: var(--radius);
  padding: 8px 13px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  cursor: pointer;
}

.direct-download {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold-light);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-strip {
    justify-self: start;
    overflow-x: auto;
    max-width: 100%;
    gap: 16px;
  }

  .pill-outline {
    display: none;
  }

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

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

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 24px), 1240px);
  }

  .site-header {
    height: auto;
    min-height: 78px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px;
  }

  .nav-strip {
    grid-column: 1 / -1;
    order: 3;
    width: calc(100vw - 24px);
    padding-bottom: 2px;
    font-size: 0.82rem;
  }

  .brand {
    padding: 4px 6px;
  }

  .brand-logo {
    width: 128px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .hero-shell {
    min-height: 93svh;
    padding: 152px 0 54px;
  }

  .hero-art {
    object-position: 62% bottom;
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(3.3rem, 16vw, 4.8rem);
    line-height: 0.9;
  }

  .hero-kicker {
    max-width: 30ch;
  }

  .hero-lower,
  .editorial-grid,
  .location-grid,
  .enquiry-grid,
  .trust-faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas .pill {
    width: 100%;
  }

  .hero-badges,
  .number-grid,
  .signal-row,
  .investment-grid,
  .footer-grid,
  .landmarks {
    grid-template-columns: 1fr;
  }

  .hero-badges li {
    min-height: 54px;
  }

  .ticker {
    overflow-x: auto;
  }

  .ticker span {
    flex-basis: 78%;
  }

  h2 {
    font-size: clamp(2.4rem, 13vw, 4.1rem);
  }

  .visual-band {
    grid-template-columns: 1fr;
  }

  .visual-band img {
    min-height: 320px;
  }

  .amenity-grid,
  .gallery-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .gallery-grid figure,
  .gallery-grid figure:first-child {
    flex: 0 0 84%;
    height: 340px;
    grid-row: auto;
    scroll-snap-align: start;
  }

  .full {
    grid-column: auto;
  }

  .floating-whatsapp {
    display: none;
  }

}

@media (max-width: 440px) {
  .hero h1 {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .hero-lower p {
    font-size: 1rem;
  }

  .pill {
    padding-inline: 15px;
  }
}

@keyframes loaderLogoReveal {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@keyframes loaderTextReveal {
  0% {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@keyframes loaderTextShine {
  0%,
  35% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes loaderLine {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(260%);
  }
}

@keyframes headerReveal {
  0% {
    opacity: 0;
    transform: translateY(-18px);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  0% {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.09) translate3d(-1.2%, -1.4%, 0);
  }
}

@keyframes heroLightSweep {
  0%,
  18% {
    opacity: 0;
    transform: translateX(-34%) skewX(-12deg);
  }

  44%,
  62% {
    opacity: 0.52;
  }

  100% {
    opacity: 0;
    transform: translateX(42%) skewX(-12deg);
  }
}

@keyframes shadePulse {
  0% {
    opacity: 0.92;
  }

  100% {
    opacity: 1;
  }
}

@keyframes champagneFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

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

  .intro-loader {
    display: none;
  }

  .has-motion .reveal,
  .has-motion .reveal.reveal-left,
  .has-motion .reveal.reveal-right {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* Reference-inspired warm luxury theme */
:root {
  --bg-dark: #f4e7d2;
  --bg-soft-dark: #fff8ec;
  --sky-blue: #b45a42;
  --sky-blue-light: #f4d3b0;
  --deep-blue: #686844;
  --steel-blue: #8a8462;
  --text-light: #5f5a42;
  --text-muted: #726c54;
  --border-blue: rgba(104, 104, 68, 0.24);
  --gold: #b45a42;
  --gold-light: #f0c9a2;
  --cream: #fff8ec;
  --sand: #e7d2b5;
  --olive: #686844;
  --bronze: #9c5a37;
  --olive-deep: #4f5030;
  --card-dark: rgba(255, 248, 236, 0.9);
  --black: #4a3f2b;
  --black-2: #fff7e8;
  --white: #5f5a42;
  --muted: #726c54;
  --line: rgba(104, 104, 68, 0.2);
  --line-strong: rgba(180, 90, 66, 0.34);
  --shadow-soft: 0 26px 70px rgba(85, 63, 38, 0.18);
}

body {
  color: var(--text-light);
  background:
    radial-gradient(circle at 15% 0%, rgba(244, 211, 176, 0.34), transparent 32%),
    linear-gradient(180deg, #fff9ef 0%, #f2e2c9 48%, #fff8ec 100%);
}

.intro-loader {
  background: #fff8ec;
}

.scroll-progress {
  background: linear-gradient(90deg, #686844, #ad6a43, #d8b36f, #686844);
  box-shadow: 0 0 18px rgba(104, 104, 68, 0.34);
}

@media (max-width: 1024px) {
  .scroll-progress {
    display: none;
  }
}

.site-header {
  grid-template-columns: 238px 1fr auto;
  height: 116px;
  padding: 0 clamp(28px, 4.5vw, 64px);
  background: rgba(255, 249, 238, 0.95);
  border-bottom: 1px solid rgba(104, 104, 68, 0.16);
  box-shadow: 0 12px 36px rgba(75, 55, 31, 0.08);
}

.site-header.is-scrolled {
  background: rgba(255, 249, 238, 0.98);
  box-shadow: 0 14px 38px rgba(75, 55, 31, 0.12);
}

.site-header .brand {
  display: grid;
  min-width: 170px;
  gap: 3px;
  justify-items: center;
  padding: 0;
  color: #686844;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-header .brand-logo {
  display: none;
}

.site-header .brand::before {
  content: "BAGICHA";
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.1vw, 2.45rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.site-header .brand::after {
  content: "AT GANGES";
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.42em;
}

.nav-strip {
  gap: clamp(26px, 3.2vw, 54px);
  color: rgba(95, 90, 66, 0.88);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.nav-strip a:hover,
.nav-strip a:focus-visible {
  color: #b45a42;
}

.header-actions .pill-outline {
  min-width: 204px;
  justify-content: center;
  color: #fff8ec;
  background: linear-gradient(135deg, #79794d, #5d5d39);
  border: 1px solid rgba(104, 104, 68, 0.38);
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(75, 77, 45, 0.2);
}

.header-actions .pill-outline:hover,
.header-actions .pill-outline:focus-visible {
  color: #fff8ec;
  border-color: rgba(180, 90, 66, 0.42);
  box-shadow: 0 20px 42px rgba(75, 77, 45, 0.28);
}

.menu-button {
  border-color: rgba(104, 104, 68, 0.26);
  background: rgba(255, 248, 236, 0.9);
}

.menu-button span {
  background: #686844;
}

.menu-panel {
  color: #fff8ec;
  background:
    linear-gradient(145deg, rgba(74, 63, 43, 0.98), rgba(104, 104, 68, 0.95)),
    #4a3f2b;
}

.hero {
  min-height: calc(100svh - 116px);
  margin-top: 116px;
  background: #f3e3c9;
}

.hero::before {
  background: linear-gradient(90deg, transparent, rgba(255, 248, 236, 0.5), transparent);
  opacity: 0.32;
}

.hero-art {
  object-position: center center;
  transform: none;
  animation: none;
  filter: saturate(0.98) contrast(1.02);
}

.hero-shade {
  background:
    radial-gradient(circle at 6% 64%, rgba(255, 208, 128, 0.34), transparent 17%),
    linear-gradient(90deg, rgba(255, 242, 218, 0.94) 0%, rgba(255, 239, 210, 0.76) 28%, rgba(255, 236, 203, 0.22) 53%, rgba(255, 236, 203, 0.02) 72%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.12), rgba(188, 102, 44, 0.08) 78%, rgba(91, 57, 33, 0.18));
  animation: none;
}

.hero-shell {
  min-height: calc(100svh - 116px);
  align-content: start;
  padding: clamp(82px, 8.5vw, 126px) 0 44px;
}

.hero-kicker {
  display: none;
}

.hero h1 {
  width: min(760px, 52vw);
  margin: 0;
  color: #b45a42;
  font-size: clamp(5.4rem, 8.2vw, 10.2rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: none;
}

.hero h1::after {
  content: "";
  display: block;
  width: 74px;
  height: 1px;
  margin: 31px 0 0 6px;
  background: #b45a42;
}

.hero-lower {
  width: min(500px, 44vw);
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 28px;
}

.hero-lower p {
  max-width: 440px;
  color: #5f5a42;
  font-size: clamp(1.22rem, 1.45vw, 1.7rem);
  font-weight: 500;
  line-height: 1.35;
  text-shadow: none;
}

.hero-ctas {
  justify-content: flex-start;
  gap: 0;
}

.hero .pill-gold {
  min-width: 242px;
  min-height: 64px;
  justify-content: center;
  color: #fff8ec;
  background: linear-gradient(135deg, #c86a4f, #b45a42 58%, #9f4f3a);
  border: 1px solid rgba(180, 90, 66, 0.38);
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(180, 90, 66, 0.22);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .pill-gold:hover,
.hero .pill-gold:focus-visible {
  color: #fff8ec;
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(180, 90, 66, 0.32);
}

.hero .pill-white {
  display: none;
}

.hero-badges {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(724px, 58vw);
  margin: clamp(72px, 11vh, 132px) 0 0;
  padding: 23px 27px;
  overflow: visible;
  color: #5f5a42;
  background: rgba(255, 249, 238, 0.94);
  border: 1px solid rgba(255, 248, 236, 0.72);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(76, 55, 30, 0.2);
  backdrop-filter: blur(12px);
}

.hero-badges::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  width: 32px;
  height: 56px;
  border-radius: 999px 0 0 999px;
  background: rgba(255, 249, 238, 0.94);
  transform: translateY(-50%);
}

.hero-badges li {
  min-height: 58px;
  padding: 6px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #5f5a42;
  background: transparent;
  border: 0;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.28;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: none;
}

.hero-badges li + li {
  border-left: 1px solid rgba(104, 104, 68, 0.22);
}

.hero-badges i {
  width: 35px;
  height: 35px;
  color: #8f4f3a;
  stroke-width: 1.6;
  flex: 0 0 auto;
}

.hero-badges span {
  display: block;
}

.section,
.brochure-modal {
  background: transparent;
}

.section-head h2,
.editorial-grid h2,
.feature-copy h2,
.investment-copy h2,
.location-copy h2,
.enquiry-copy h2,
.footer-grid h2 {
  color: #4d472f;
}

.eyebrow,
.text-link,
.footer-grid a:hover,
.nav-strip a:hover {
  color: #b45a42;
}

.number-grid article,
.amenity-card,
.gallery-card,
.location-panel,
.lead-form,
.brochure-card,
.stat-strip,
.hero-badges,
.ticker {
  background: rgba(255, 248, 236, 0.86);
  border-color: rgba(104, 104, 68, 0.2);
  box-shadow: 0 22px 54px rgba(84, 61, 35, 0.12);
}

.number-grid article:hover,
.amenity-card:hover,
.gallery-card:hover,
.location-panel:hover {
  border-color: rgba(180, 90, 66, 0.44);
  box-shadow: 0 28px 72px rgba(84, 61, 35, 0.18);
}

.pill-gold,
.lead-form button,
.footer-whatsapp {
  color: #fff8ec;
  background: linear-gradient(135deg, #c86a4f, #b45a42, #8f4f3a);
  border-color: rgba(180, 90, 66, 0.36);
  box-shadow: 0 18px 38px rgba(180, 90, 66, 0.2);
}

.pill-outline,
.pill-white {
  color: #fff8ec;
  background: linear-gradient(135deg, #686844, #4f5030);
  border-color: rgba(104, 104, 68, 0.34);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  color: #4d472f;
  background: rgba(255, 252, 244, 0.86);
  border-color: rgba(104, 104, 68, 0.24);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(95, 90, 66, 0.68);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(180, 90, 66, 0.62);
  box-shadow: 0 0 0 4px rgba(180, 90, 66, 0.12);
}

.site-footer {
  color: rgba(255, 248, 236, 0.74);
  background:
    linear-gradient(135deg, rgba(74, 63, 43, 0.98), rgba(38, 34, 22, 0.98)),
    #4a3f2b;
  border-top: 1px solid rgba(244, 211, 176, 0.24);
}

.site-footer .footer-brand {
  background: rgba(255, 248, 236, 0.96);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 185px 1fr auto;
    padding-inline: 20px;
  }

  .nav-strip {
    gap: 18px;
    font-size: 0.76rem;
  }

  .header-actions .pill-outline {
    min-width: 168px;
  }

  .hero h1 {
    width: min(620px, 62vw);
  }

  .hero-badges {
    width: min(700px, 72vw);
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 92px;
    height: auto;
    padding: 14px 16px;
  }

  .site-header .brand {
    justify-items: start;
  }

  .site-header .brand::before {
    font-size: 1.85rem;
  }

  .site-header .brand::after {
    font-size: 0.66rem;
    letter-spacing: 0.34em;
  }

  .nav-strip {
    order: 3;
    grid-column: 1 / -1;
    width: calc(100vw - 32px);
    padding: 8px 0 0;
    color: rgba(95, 90, 66, 0.82);
  }

  .header-actions .pill-outline {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 138px);
    margin-top: 138px;
  }

  .hero-art {
    object-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 242, 218, 0.94) 0%, rgba(255, 239, 210, 0.68) 45%, rgba(255, 236, 203, 0.16) 100%),
      linear-gradient(180deg, rgba(255, 248, 236, 0.1), rgba(91, 57, 33, 0.2));
  }

  .hero-shell {
    min-height: calc(100svh - 138px);
    padding: 48px 0 34px;
  }

  .hero h1 {
    width: min(430px, 84vw);
    font-size: clamp(3.8rem, 17vw, 5.9rem);
    line-height: 0.94;
  }

  .hero h1::after {
    margin-top: 22px;
  }

  .hero-lower {
    width: min(430px, 88vw);
    margin-top: 22px;
  }

  .hero-lower p {
    font-size: 1.12rem;
  }

  .hero .pill-gold {
    width: min(270px, 100%);
  }

  .hero-badges {
    grid-template-columns: 1fr;
    width: min(430px, 92vw);
    margin-top: 46px;
    padding: 18px 20px;
  }

  .hero-badges::before {
    display: none;
  }

  .hero-badges li {
    justify-content: flex-start;
    padding: 14px 4px;
  }

  .hero-badges li + li {
    border-left: 0;
    border-top: 1px solid rgba(104, 104, 68, 0.18);
  }
}

@media (max-width: 440px) {
  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 4.8rem);
  }

  .hero-badges {
    margin-top: 34px;
  }
}

/* Use the supplied reference image as the exact hero composition. */
.hero::before,
.hero-shade {
  display: none;
}

.hero-art {
  object-position: center center;
}

.hero-shell {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 760px) {
  .hero-art {
    object-position: left center;
  }
}

/* Live hero content: real button, selectable title, clean background image. */
.hero::before {
  display: block;
}

.hero-shade {
  display: block;
  pointer-events: none;
}

.hero-art {
  object-position: center center;
}

.hero-shell {
  position: relative !important;
  z-index: 2 !important;
  width: auto !important;
  height: auto !important;
  min-height: calc(100svh - 116px) !important;
  padding: clamp(82px, 8.5vw, 126px) 0 44px !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  white-space: normal !important;
  border: 0 !important;
}

.hero h1,
.hero-lower,
.hero-badges {
  user-select: text;
  pointer-events: auto;
}

.hero-ctas,
.hero .pill-gold {
  pointer-events: auto;
}

.hero .pill-gold {
  position: relative;
  z-index: 3;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 760px) {
  .hero-shell {
    min-height: calc(100svh - 138px) !important;
    padding: 28px 0 34px !important;
  }

  .hero-art {
    object-position: 63% center;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 14vw, 4.9rem);
  }

  .hero-lower {
    gap: 18px;
    margin-top: 16px;
  }

  .hero-lower p {
    font-size: 1.02rem;
    max-width: 320px;
  }

  .hero .pill-gold {
    min-height: 56px;
  }
}


/* Remove hero white / cream overlay effect */
.hero::before {
  content: none !important;
  display: none !important;
  background: none !important;
  animation: none !important;
}

.hero-shade {
  display: none !important;
  background: none !important;
  opacity: 0 !important;
  animation: none !important;
}

@media (max-width: 760px) {
  .hero-shade {
    display: none !important;
    background: none !important;
    opacity: 0 !important;
  }
}

/* Reference typography and slight right alignment */
:root {
  --display-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --hero-copy-shift: clamp(26px, 4.2vw, 72px);
}

body,
.body-text {
  font-family: "Montserrat", Arial, sans-serif;
}

.site-header .brand::before {
  font-family: var(--display-serif);
  font-weight: 300;
  letter-spacing: 0.105em;
}

.hero-shell {
  padding: clamp(82px, 8.5vw, 126px) clamp(18px, 3vw, 48px) 44px var(--hero-copy-shift) !important;
}

.hero-title,
.hero h1 {
  width: min(790px, 55vw);
  font-family: var(--display-serif);
  font-size: clamp(5.7rem, 8.7vw, 10.8rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #ad563f;
}

.hero h1::after {
  width: 78px;
  margin-top: 28px;
  background: #ad563f;
}

.hero-lower {
  margin-top: 26px;
}

.hero-lower p {
  font-size: clamp(1.18rem, 1.34vw, 1.62rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero .pill-gold {
  letter-spacing: 0.15em;
}

.hero-badges {
  margin-top: clamp(68px, 10vh, 118px);
}

@media (max-width: 760px) {
  :root {
    --hero-copy-shift: 18px;
  }

  .hero-shell {
    padding: 26px 18px 34px var(--hero-copy-shift) !important;
  }

  .hero-title,
  .hero h1 {
    width: min(410px, calc(100vw - 36px));
    font-size: clamp(3.25rem, 13.6vw, 4.85rem);
    line-height: 0.9;
    letter-spacing: 2.4px;
  }

  .hero h1::after {
    margin-top: 18px;
  }

  .hero-lower {
    margin-top: 14px;
  }

  .hero-lower p {
    max-width: 330px;
  }
}

/* Header logo image */
.site-header .brand {
  width: clamp(158px, 14vw, 216px);
  min-width: 0;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  overflow: hidden;
  background: rgba(255, 248, 236, 0.72);
  border: 1px solid rgba(104, 104, 68, 0.16);
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(75, 55, 31, 0.08);
}

.site-header .brand::before,
.site-header .brand::after {
  content: none !important;
  display: none !important;
}

.site-header .brand-logo {
  display: block !important;
  width: 100%;
  max-width: 190px;
  max-height: 66px;
  height: auto;
  object-fit: contain;
  filter: saturate(1.05) contrast(1.04);
}

@media (max-width: 760px) {
  .site-header .brand {
    width: 152px;
    height: 62px;
    justify-content: flex-start;
    padding: 4px 8px;
  }

  .site-header .brand-logo {
    max-height: 54px;
  }
}

/* Estate editorial intro section */
.section.intro {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  padding: clamp(110px, 12vw, 170px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 50%, rgba(255, 255, 255, 0.6), transparent 28%),
    linear-gradient(90deg, #fbf1df 0%, #f8ead2 48%, #efe0c7 100%);
}

.section.intro::before {
  content: "B";
  position: absolute;
  left: clamp(8px, 3vw, 54px);
  bottom: -44px;
  z-index: -1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(18rem, 28vw, 34rem);
  font-weight: 300;
  line-height: 0.72;
  color: rgba(90, 72, 50, 0.055);
  pointer-events: none;
}

.section.intro::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -2;
  width: min(48vw, 760px);
  background:
    linear-gradient(90deg, rgba(251, 241, 223, 1) 0%, rgba(251, 241, 223, 0.72) 20%, rgba(251, 241, 223, 0.2) 54%, rgba(251, 241, 223, 0) 100%),
    url("/bagicha/assets/pool-courtyard.webp") center right / cover no-repeat;
  opacity: 0.32;
  filter: sepia(0.38) saturate(0.72) contrast(0.95);
  pointer-events: none;
}

.intro .editorial-grid {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.78fr);
  gap: clamp(64px, 10vw, 150px);
  align-items: center;
}

.intro .editorial-grid > div:first-child {
  max-width: 760px;
}

.intro .eyebrow {
  position: relative;
  margin: 0 0 clamp(54px, 5vw, 78px);
  color: #8a5f3e;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.82rem, 0.9vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1;
}

.intro .eyebrow::after {
  content: "";
  display: block;
  width: 82px;
  height: 1px;
  margin-top: 35px;
  background: rgba(138, 95, 62, 0.34);
}

.intro #about-title {
  max-width: 7.4ch;
  margin: 0;
  color: #40382b;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5.15rem, 8.3vw, 10rem);
  font-weight: 300;
  line-height: 0.82;
  letter-spacing: -0.015em;
  text-transform: none;
}

.intro-copy {
  max-width: 520px;
  justify-self: start;
  padding-top: clamp(64px, 8vw, 120px);
}

.intro-copy p {
  margin: 0;
  color: #4c4131;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.72rem, 1.85vw, 2.35rem);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.intro .text-link {
  display: inline-block;
  margin-top: clamp(42px, 4vw, 66px);
  padding-bottom: 14px;
  color: #8a5f3e;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.85rem, 0.9vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(138, 95, 62, 0.72);
}

.intro .text-link:hover,
.intro .text-link:focus-visible {
  color: #ad563f;
  border-color: #ad563f;
}

@media (max-width: 980px) {
  .section.intro {
    min-height: auto;
    padding: 96px 0 112px;
  }

  .section.intro::after {
    width: 62vw;
    opacity: 0.18;
  }

  .intro .editorial-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: 0;
  }

  .intro #about-title {
    max-width: 8.8ch;
    font-size: clamp(4.2rem, 13vw, 7rem);
  }

  .intro-copy {
    max-width: 620px;
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  .section.intro {
    padding: 76px 0 88px;
  }

  .section.intro::before {
    font-size: 18rem;
    left: -18px;
    bottom: -30px;
  }

  .section.intro::after {
    width: 100%;
    opacity: 0.1;
  }

  .intro .eyebrow {
    margin-bottom: 44px;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
  }

  .intro .eyebrow::after {
    margin-top: 26px;
  }

  .intro #about-title {
    max-width: 8.4ch;
    font-size: clamp(3.45rem, 16vw, 5.1rem);
    line-height: 0.88;
  }

  .intro-copy p {
    font-size: 1.55rem;
  }

  .intro .text-link {
    margin-top: 36px;
    font-size: 0.78rem;
  }
}

/* Private retreat editorial visual band */
.visual-band {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(390px, 0.98fr) minmax(0, 0.96fr);
  align-items: stretch;
  min-height: clamp(680px, 86svh, 900px);
  margin: 0;
  overflow: hidden;
  border: 0;
  background: #f8edd9;
}

.visual-band > img {
  width: 100%;
  height: 100%;
  min-height: clamp(680px, 86svh, 900px);
  object-fit: cover;
  filter: saturate(0.86) contrast(0.98) sepia(0.12);
  transform: scale(1.01);
}

.visual-band > img:first-child {
  object-position: center center;
}

.visual-band > img:last-child {
  object-position: center center;
}

.visual-band > div {
  position: relative;
  display: flex;
  min-height: clamp(680px, 86svh, 900px);
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 7.4vw, 128px) clamp(48px, 6.5vw, 118px);
  color: #3e372c;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(180deg, #fff8ec 0%, #f8ecd6 100%);
  box-shadow:
    inset 1px 0 rgba(93, 74, 51, 0.08),
    inset -1px 0 rgba(93, 74, 51, 0.08);
}

.visual-band > div::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.16), transparent 34%, rgba(255, 248, 236, 0.14)),
    radial-gradient(circle at 50% 50%, transparent 0 54%, rgba(121, 94, 58, 0.035) 70%);
  pointer-events: none;
}

.visual-band .eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 clamp(56px, 5vw, 78px);
  color: #696b40;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.84rem, 0.92vw, 1.02rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.visual-band .eyebrow::after {
  content: "";
  display: block;
  width: 92px;
  height: 1px;
  margin-top: 26px;
  background: rgba(105, 107, 64, 0.54);
}

.visual-band h2 {
  position: relative;
  z-index: 1;
  max-width: 9.5ch;
  margin: 0;
  color: #342d24;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.2rem, 5.5vw, 7.15rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.025em;
}

.visual-band p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: clamp(46px, 4.6vw, 64px) 0 0;
  color: rgba(52, 45, 36, 0.78);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.02rem, 1.18vw, 1.24rem);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

@media (max-width: 1024px) {
  .visual-band {
    grid-template-columns: 1fr;
  }

  .visual-band > img,
  .visual-band > div {
    min-height: auto;
  }

  .visual-band > img {
    height: clamp(380px, 62vw, 560px);
  }

  .visual-band > div {
    padding: clamp(66px, 9vw, 96px) clamp(26px, 8vw, 76px);
  }

  .visual-band h2 {
    max-width: 11ch;
    font-size: clamp(3.8rem, 10vw, 6rem);
  }
}

@media (max-width: 560px) {
  .visual-band > img {
    height: 360px;
  }

  .visual-band > div {
    padding: 58px 24px 66px;
  }

  .visual-band .eyebrow {
    margin-bottom: 44px;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
  }

  .visual-band .eyebrow::after {
    width: 72px;
    margin-top: 20px;
  }

  .visual-band h2 {
    max-width: 10.5ch;
    font-size: clamp(3.25rem, 15vw, 4.75rem);
    line-height: 0.96;
  }

  .visual-band p:not(.eyebrow) {
    margin-top: 34px;
    font-size: 0.98rem;
    line-height: 1.72;
  }
}

/* Amenities collection editorial section */
.section.amenities {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(94px, 10vw, 150px) 0;
  color: #3d372b;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.82), transparent 24%),
    radial-gradient(circle at 18% 46%, rgba(231, 213, 184, 0.32), transparent 28%),
    linear-gradient(180deg, #fbf2e2 0%, #f7ead4 100%);
}

.section.amenities::before {
  content: "";
  position: absolute;
  left: clamp(-140px, -7vw, -60px);
  top: 120px;
  z-index: -1;
  width: clamp(190px, 19vw, 320px);
  height: clamp(520px, 62vw, 800px);
  border: 1px solid rgba(93, 99, 58, 0.14);
  border-radius: 999px 999px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.34), rgba(198, 177, 139, 0.12)),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(130, 104, 72, 0.16) 22px 23px);
  opacity: 0.7;
  pointer-events: none;
}

.section.amenities > .container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 450px);
  grid-template-areas:
    "head image"
    "grid image";
  gap: clamp(36px, 5vw, 76px) clamp(52px, 7vw, 112px);
  align-items: start;
}

.section.amenities > .container::before {
  content: "";
  grid-area: image;
  align-self: center;
  justify-self: center;
  width: min(100%, 450px);
  min-height: clamp(620px, 68vw, 790px);
  border: clamp(14px, 1.7vw, 22px) solid rgba(255, 250, 239, 0.95);
  border-radius: 999px 999px 0 0;
  background:
    linear-gradient(180deg, rgba(40, 35, 26, 0.04), rgba(40, 35, 26, 0.14)),
    url("/bagicha/assets/pool.png") center / cover no-repeat;
  box-shadow:
    0 34px 70px rgba(74, 55, 34, 0.18),
    0 0 0 1px rgba(92, 79, 54, 0.1);
}

.section.amenities > .container::after {
  content: "";
  position: absolute;
  right: clamp(300px, 31vw, 486px);
  top: 46%;
  width: 20px;
  height: 20px;
  background: #697046;
  transform: rotate(45deg);
  box-shadow: clamp(460px, 35vw, 590px) 0 0 #697046;
  opacity: 0.82;
  pointer-events: none;
}

.amenities .section-head.compact {
  grid-area: head;
  max-width: 820px;
  margin: 0;
  text-align: left;
}

.amenities .section-head.compact .eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 clamp(42px, 5vw, 70px);
  color: #696f42;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.78rem, 0.86vw, 0.96rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.28em;
}

.amenities .section-head.compact .eyebrow::after {
  content: "";
  width: 124px;
  height: 8px;
  background: linear-gradient(90deg, rgba(105, 111, 66, 0.28), rgba(105, 111, 66, 0.05));
}

.amenities .section-head.compact h2 {
  max-width: 11ch;
  margin: 0;
  color: #3d372b;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5.25rem, 7vw, 9.4rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.amenities .section-head.compact h2::after {
  content: "Curated amenities and thoughtful details that turn every moment into a private retreat.";
  display: block;
  max-width: 520px;
  margin-top: clamp(28px, 3.2vw, 42px);
  color: rgba(61, 55, 43, 0.68);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.96rem, 1vw, 1.12rem);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0;
}

.amenities .amenity-grid {
  grid-area: grid;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 910px;
  margin: 0;
}

.amenities .amenity-grid article {
  min-height: 182px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  color: #3d372b;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 250, 239, 0.58), rgba(244, 231, 207, 0.22)),
    rgba(255, 248, 236, 0.34);
  border: 1px solid rgba(115, 98, 64, 0.22);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: blur(4px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.amenities .amenity-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(105, 111, 66, 0.46);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.78), rgba(244, 231, 207, 0.38)),
    rgba(255, 248, 236, 0.48);
}

.amenities .amenity-grid i,
.amenities .amenity-grid svg {
  width: 34px;
  height: 34px;
  margin: 0 0 19px;
  color: #727746;
  stroke-width: 1.55;
}

.amenities .amenity-grid h3 {
  margin: 0;
  color: #3d372b;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.9rem, 0.92vw, 1.02rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.amenities .amenity-grid p {
  max-width: 16ch;
  margin: 13px auto 0;
  color: rgba(61, 55, 43, 0.62);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.74rem, 0.74vw, 0.86rem);
  font-weight: 400;
  line-height: 1.62;
}

@media (max-width: 1180px) {
  .section.amenities > .container {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
    gap: 42px;
  }

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

  .section.amenities > .container::before {
    min-height: 650px;
  }
}

@media (max-width: 880px) {
  .section.amenities {
    padding: 82px 0 94px;
  }

  .section.amenities > .container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "image"
      "grid";
  }

  .section.amenities > .container::before {
    width: min(100%, 440px);
    min-height: 560px;
  }

  .section.amenities > .container::after {
    display: none;
  }

  .amenities .section-head.compact h2 {
    max-width: 12ch;
    font-size: clamp(4rem, 13vw, 7rem);
  }

  .amenities .amenity-grid {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .section.amenities {
    padding: 68px 0 78px;
  }

  .section.amenities::before {
    display: none;
  }

  .amenities .section-head.compact .eyebrow {
    gap: 12px;
    margin-bottom: 32px;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  .amenities .section-head.compact .eyebrow::after {
    width: 74px;
    height: 6px;
  }

  .amenities .section-head.compact h2 {
    font-size: clamp(3.25rem, 16vw, 4.8rem);
  }

  .section.amenities > .container::before {
    width: min(100%, 340px);
    min-height: 430px;
    border-width: 12px;
  }

  .amenities .amenity-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .amenities .amenity-grid article {
    min-height: 158px;
  }
}

/* Investment highlights editorial section */
.section.highlights {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(110px, 11vw, 170px) 0;
  color: #3b3529;
  background:
    radial-gradient(circle at 85% 26%, rgba(219, 199, 164, 0.42), transparent 22%),
    radial-gradient(circle at 22% 68%, rgba(255, 255, 255, 0.68), transparent 28%),
    linear-gradient(180deg, #fff5e5 0%, #f8ead4 100%);
}

.section.highlights::before {
  content: "";
  position: absolute;
  right: clamp(30px, 5vw, 92px);
  top: clamp(70px, 8vw, 120px);
  z-index: -1;
  width: clamp(260px, 24vw, 430px);
  height: clamp(520px, 46vw, 780px);
  border-radius: 999px 999px 0 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(156, 118, 75, 0.06), transparent 46%),
    linear-gradient(180deg, rgba(220, 198, 160, 0.22), rgba(220, 198, 160, 0.04));
  pointer-events: none;
}

.section.highlights::after {
  content: "";
  position: absolute;
  right: clamp(16px, 4vw, 80px);
  top: 24%;
  z-index: -1;
  width: clamp(220px, 22vw, 360px);
  height: clamp(360px, 35vw, 620px);
  opacity: 0.12;
  background:
    radial-gradient(ellipse at 48% 20%, transparent 0 44%, #7a6f45 45% 46%, transparent 47%),
    linear-gradient(45deg, transparent 47%, #7a6f45 48% 49%, transparent 50%),
    linear-gradient(-45deg, transparent 47%, #7a6f45 48% 49%, transparent 50%);
  pointer-events: none;
}

.section.highlights > .container {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(420px, 1.16fr);
  grid-template-areas:
    "head cards"
    "signals cards";
  gap: clamp(46px, 6vw, 96px);
  align-items: center;
}

.highlights .section-head {
  grid-area: head;
  max-width: 660px;
  margin: 0;
}

.highlights .section-head .eyebrow {
  margin: 0 0 clamp(34px, 4vw, 56px);
  color: #ad563f;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.78rem, 0.86vw, 0.96rem);
  font-weight: 700;
  letter-spacing: 0.24em;
}

.highlights .section-head .eyebrow::after {
  content: "";
  display: block;
  width: 86px;
  height: 1px;
  margin-top: 28px;
  background: rgba(173, 86, 63, 0.45);
}

.highlights .section-head h2 {
  max-width: 9.4ch;
  margin: 0;
  color: #3b3529;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5rem, 7vw, 9.25rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.highlights .section-head h2::after {
  content: "A rare blend of location, design, and enduring value - crafted for those who seek more from where they live and what they invest in.";
  display: block;
  max-width: 560px;
  margin-top: clamp(28px, 3vw, 44px);
  color: rgba(59, 53, 41, 0.72);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1rem, 1.1vw, 1.22rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.highlights .number-grid {
  grid-area: cards;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.highlights .number-grid article {
  width: min(100%, 670px);
  min-height: 196px;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: clamp(26px, 3vw, 48px);
  padding: clamp(32px, 3.5vw, 52px);
  color: #3b3529;
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.88), rgba(252, 240, 220, 0.88)),
    rgba(255, 248, 236, 0.9);
  border: 1px solid rgba(123, 98, 64, 0.16);
  border-radius: 0;
  box-shadow: 0 24px 58px rgba(92, 66, 38, 0.12);
  backdrop-filter: blur(10px);
}

.highlights .number-grid article:nth-child(1) {
  justify-self: start;
}

.highlights .number-grid article:nth-child(2) {
  justify-self: center;
  margin-top: -8px;
}

.highlights .number-grid article:nth-child(3) {
  justify-self: end;
  margin-top: -8px;
}

.highlights .number-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(173, 86, 63, 0.32);
  box-shadow: 0 30px 74px rgba(92, 66, 38, 0.18);
}

.highlights .number-grid span {
  position: relative;
  display: block;
  color: #ad563f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.5rem, 5.8vw, 7.3rem);
  font-weight: 400;
  line-height: 0.9;
}

.highlights .number-grid span::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 50%;
  width: 1px;
  height: 118px;
  background: rgba(123, 98, 64, 0.18);
  transform: translateY(-50%);
}

.highlights .number-grid h3 {
  margin: 0;
  color: #3b3529;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.05vw, 2.45rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.018em;
}

.highlights .number-grid p {
  max-width: 390px;
  margin: 14px 0 0;
  color: rgba(59, 53, 41, 0.7);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  font-weight: 400;
  line-height: 1.58;
}

.highlights .signal-row {
  grid-area: signals;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-self: start;
  max-width: 620px;
  margin: clamp(8px, 2vw, 28px) 0 0;
}

.highlights .signal-row span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  color: #6d7044;
  background: rgba(255, 248, 236, 0.56);
  border: 1px solid rgba(109, 112, 68, 0.22);
  border-radius: 999px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .section.highlights > .container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "cards"
      "signals";
  }

  .highlights .section-head h2 {
    max-width: 11ch;
    font-size: clamp(4.3rem, 11vw, 7.4rem);
  }

  .highlights .number-grid article {
    justify-self: stretch !important;
    width: 100%;
    margin-top: 0 !important;
  }
}

@media (max-width: 680px) {
  .section.highlights {
    padding: 78px 0 86px;
  }

  .highlights .section-head .eyebrow {
    margin-bottom: 30px;
    font-size: 0.74rem;
  }

  .highlights .section-head h2 {
    font-size: clamp(3.35rem, 16vw, 5.1rem);
    line-height: 0.96;
  }

  .highlights .number-grid article {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 24px;
  }

  .highlights .number-grid span::after {
    display: none;
  }

  .highlights .number-grid h3 {
    font-size: 2rem;
  }

  .highlights .signal-row {
    gap: 8px;
  }

  .highlights .signal-row span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Split editorial investment section */
#highlights.section.highlights {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  color: #253335;
  background:
    radial-gradient(circle at 13% 12%, rgba(255, 255, 255, 0.88), transparent 28%),
    linear-gradient(135deg, #fff9ee 0%, #f8efdf 54%, #f1e3ce 100%);
}

#highlights.section.highlights::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  z-index: 0;
  width: 57.5%;
  height: clamp(520px, 48vw, 690px);
  border-radius: 0;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(255, 249, 238, 0.22), rgba(255, 249, 238, 0.02) 30%),
    linear-gradient(180deg, rgba(9, 8, 4, 0.05), rgba(9, 8, 4, 0.12)),
    url("/bagicha/assets/bedroom-interior.webp") center / cover no-repeat;
  box-shadow: inset 1px 0 0 rgba(118, 101, 62, 0.2);
  pointer-events: none;
}

#highlights.section.highlights::after {
  content: "";
  position: absolute;
  left: clamp(34px, 5.5vw, 92px);
  bottom: 210px;
  z-index: 0;
  width: clamp(150px, 17vw, 270px);
  height: clamp(150px, 17vw, 270px);
  opacity: 0.08;
  border: 1px solid #a08335;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, #a08335 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, #a08335 49% 51%, transparent 52%);
  pointer-events: none;
}

#highlights.section.highlights > .container {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(360px, 42.5%) minmax(0, 57.5%);
  grid-template-areas:
    "head media"
    "cards cards"
    "signals signals";
  gap: 0;
  align-items: stretch;
  padding: 0;
}

#highlights .section-head {
  grid-area: head;
  display: flex;
  min-height: clamp(520px, 48vw, 690px);
  flex-direction: column;
  justify-content: center;
  max-width: none;
  margin: 0;
  padding: clamp(72px, 8vw, 124px) clamp(34px, 5.8vw, 90px);
}

#highlights .section-head .eyebrow {
  margin: 0 0 clamp(26px, 3vw, 42px);
  color: #96762a;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.78rem, 0.82vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.31em;
  line-height: 1.2;
  text-transform: uppercase;
}

#highlights .section-head .eyebrow::after {
  content: "";
  display: block;
  width: clamp(112px, 13vw, 160px);
  height: 1px;
  margin-top: clamp(24px, 2.7vw, 34px);
  background:
    linear-gradient(90deg, rgba(150, 118, 42, 0.92), rgba(150, 118, 42, 0.18));
}

#highlights .section-head h2 {
  max-width: 10.7ch;
  margin: 0;
  color: #223235;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 5.6vw, 7rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.025em;
}

#highlights .section-head h2::after {
  content: "Experience refined Spanish-inspired living on Ganga Canal Road, Haridwar. A coveted address that blends architectural elegance with seamless connectivity and lasting investment value.";
  display: block;
  max-width: 560px;
  margin-top: clamp(34px, 4vw, 54px);
  color: rgba(37, 51, 53, 0.78);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1rem, 1.08vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.005em;
}

#highlights .number-grid {
  grid-area: cards;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(40px, 4.6vw, 66px) clamp(34px, 6vw, 96px);
  border-top: 1px solid rgba(116, 96, 55, 0.24);
  border-bottom: 1px solid rgba(116, 96, 55, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(251, 244, 230, 0.92));
  box-shadow: 0 -18px 48px rgba(116, 90, 43, 0.08);
}

#highlights .number-grid article,
#highlights .number-grid article:nth-child(2),
#highlights .number-grid article:nth-child(3) {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(20px, 2.6vw, 38px);
  justify-self: stretch !important;
  width: auto;
  min-height: 0;
  margin: 0 !important;
  padding: clamp(22px, 2.8vw, 38px) clamp(24px, 3.4vw, 56px);
  transform: none !important;
  border: 0;
  border-left: 1px solid rgba(116, 96, 55, 0.24);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#highlights .number-grid article:first-child {
  border-left: 0;
}

#highlights .number-grid article:hover {
  transform: translateY(-4px) !important;
}

#highlights .number-grid span {
  display: block;
  min-width: 2.35ch;
  color: #a08335;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.3rem, 4.7vw, 5.6rem);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.03em;
}

#highlights .number-grid span::after {
  display: none;
}

#highlights .number-grid h3 {
  margin: 0 0 14px;
  color: #17272a;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 2.1vw, 2.65rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

#highlights .number-grid p {
  max-width: 34ch;
  margin: 0;
  color: rgba(37, 51, 53, 0.72);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  line-height: 1.68;
  letter-spacing: 0.005em;
}

#highlights .signal-row {
  grid-area: signals;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 18px clamp(26px, 5vw, 80px) 28px;
  background: #fff7e9;
}

#highlights .signal-row span {
  border: 1px solid rgba(160, 131, 53, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  color: rgba(37, 51, 53, 0.78);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  #highlights.section.highlights {
    padding-top: clamp(300px, 46vw, 430px);
  }

  #highlights.section.highlights::before {
    width: 100%;
    height: clamp(300px, 46vw, 430px);
  }

  #highlights.section.highlights::after {
    display: none;
  }

  #highlights.section.highlights > .container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "cards"
      "signals";
  }

  #highlights .section-head {
    min-height: 0;
    padding-top: clamp(58px, 9vw, 82px);
    padding-bottom: clamp(50px, 7vw, 74px);
  }

  #highlights .section-head h2 {
    max-width: 12ch;
    font-size: clamp(4rem, 10vw, 6.6rem);
  }

  #highlights .number-grid {
    grid-template-columns: 1fr;
    padding: 0 clamp(22px, 5vw, 52px);
  }

  #highlights .number-grid article,
  #highlights .number-grid article:nth-child(2),
  #highlights .number-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(116, 96, 55, 0.22);
    padding: clamp(30px, 4.5vw, 44px) 0;
  }

  #highlights .number-grid article:first-child {
    border-top: 0;
  }
}

@media (max-width: 640px) {
  #highlights.section.highlights {
    padding-top: 270px;
  }

  #highlights.section.highlights::before {
    height: 270px;
    background-position: 52% center;
  }

  #highlights .section-head {
    padding: 48px 22px 42px;
  }

  #highlights .section-head .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.24em;
  }

  #highlights .section-head h2 {
    max-width: 11ch;
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  #highlights .section-head h2::after {
    margin-top: 26px;
    font-size: 0.94rem;
  }

  #highlights .number-grid {
    padding: 0 22px;
  }

  #highlights .number-grid article,
  #highlights .number-grid article:nth-child(2),
  #highlights .number-grid article:nth-child(3) {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #highlights .number-grid span {
    font-size: 3.4rem;
  }

  #highlights .number-grid h3 {
    font-size: 2.1rem;
  }

  #highlights .signal-row {
    justify-content: flex-start;
    padding: 18px 22px 26px;
  }

  #highlights .signal-row span {
    width: 100%;
    justify-content: center;
  }
}

/* Investment strip readability fix */
#highlights .number-grid article,
#highlights .number-grid article:nth-child(2),
#highlights .number-grid article:nth-child(3) {
  grid-template-columns: minmax(56px, 0.22fr) minmax(0, 1fr);
  column-gap: clamp(16px, 2vw, 30px);
  row-gap: 10px;
  overflow: visible;
}

#highlights .number-grid span {
  grid-row: 1 / span 2;
  align-self: start;
  min-width: 0;
  padding-top: 2px;
  font-size: clamp(2.9rem, 4.05vw, 4.9rem);
}

#highlights .number-grid h3 {
  grid-column: 2;
  margin-bottom: 6px;
  font-size: clamp(1.55rem, 1.75vw, 2.25rem);
  line-height: 1.08;
  overflow-wrap: normal;
}

#highlights .number-grid p {
  grid-column: 2;
  max-width: 38ch;
}

#highlights .signal-row {
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  justify-content: stretch;
  padding: 0 clamp(34px, 6vw, 96px);
  border-top: 1px solid rgba(116, 96, 55, 0.18);
  background: linear-gradient(180deg, #fff8ec, #f8edd9);
}

#highlights .signal-row span {
  width: auto;
  min-height: 68px;
  justify-content: center;
  border: 0;
  border-left: 1px solid rgba(116, 96, 55, 0.2);
  border-radius: 0;
  background: transparent;
  padding: 18px 14px;
  text-align: center;
}

#highlights .signal-row span:first-child {
  border-left: 0;
}

@media (max-width: 1040px) {
  #highlights .signal-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 clamp(22px, 5vw, 52px);
  }

  #highlights .signal-row span:nth-child(odd) {
    border-left: 0;
  }

  #highlights .signal-row span:nth-child(n + 3) {
    border-top: 1px solid rgba(116, 96, 55, 0.18);
  }
}

@media (max-width: 640px) {
  #highlights .number-grid article,
  #highlights .number-grid article:nth-child(2),
  #highlights .number-grid article:nth-child(3) {
    grid-template-columns: 1fr;
  }

  #highlights .number-grid span,
  #highlights .number-grid h3,
  #highlights .number-grid p {
    grid-column: 1;
    grid-row: auto;
  }

  #highlights .signal-row {
    grid-template-columns: 1fr;
    padding: 0 22px;
  }

  #highlights .signal-row span,
  #highlights .signal-row span:nth-child(odd) {
    border-left: 0;
    border-top: 1px solid rgba(116, 96, 55, 0.18);
  }

  #highlights .signal-row span:first-child {
    border-top: 0;
  }
}

/* Final full-width signal strip fix */
#highlights.section.highlights > .container > .signal-row {
  grid-column: 1 / -1 !important;
  grid-area: signals !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  margin: 0 !important;
  box-sizing: border-box;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  padding: 0 clamp(70px, 9vw, 130px) !important;
  border-top: 1px solid rgba(116, 96, 55, 0.24);
  border-bottom: 1px solid rgba(116, 96, 55, 0.16);
  background: linear-gradient(180deg, #fff8ec 0%, #f5e7cf 100%) !important;
}

#highlights.section.highlights > .container > .signal-row span {
  width: auto !important;
  min-width: 0;
  min-height: 72px;
  display: flex !important;
  align-items: center;
  justify-content: center !important;
  padding: 18px 12px !important;
  border: 0 !important;
  border-left: 1px solid rgba(116, 96, 55, 0.22) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(37, 51, 53, 0.78) !important;
  font-size: clamp(0.62rem, 0.7vw, 0.78rem) !important;
  line-height: 1.35 !important;
  letter-spacing: 0.16em !important;
  text-align: center !important;
  text-wrap: balance;
}

#highlights.section.highlights > .container > .signal-row span:first-child {
  border-left: 0 !important;
}

@media (max-width: 900px) {
  #highlights.section.highlights > .container > .signal-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding: 0 24px !important;
  }

  #highlights.section.highlights > .container > .signal-row span:nth-child(odd) {
    border-left: 0 !important;
  }

  #highlights.section.highlights > .container > .signal-row span:nth-child(n + 3) {
    border-top: 1px solid rgba(116, 96, 55, 0.18) !important;
  }
}

@media (max-width: 520px) {
  #highlights.section.highlights > .container > .signal-row {
    grid-template-columns: 1fr !important;
    padding: 0 22px !important;
  }

  #highlights.section.highlights > .container > .signal-row span,
  #highlights.section.highlights > .container > .signal-row span:nth-child(odd) {
    border-left: 0 !important;
    border-top: 1px solid rgba(116, 96, 55, 0.18) !important;
  }

  #highlights.section.highlights > .container > .signal-row span:first-child {
    border-top: 0 !important;
  }
}

/* Location advantage editorial section */
#location.section.location {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(82px, 8vw, 132px) 0 clamp(76px, 7vw, 116px);
  color: #30291f;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.95), transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(213, 176, 104, 0.12), transparent 26%),
    radial-gradient(circle at 92% 82%, rgba(213, 176, 104, 0.12), transparent 28%),
    linear-gradient(180deg, #fff9ef 0%, #f8eddb 100%);
}

#location.section.location::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(156, 125, 64, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 125, 64, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

#location.section.location::after {
  content: "";
  position: absolute;
  top: clamp(28px, 4vw, 58px);
  left: 50%;
  z-index: 0;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(172, 132, 54, 0.7);
  border-radius: 50%;
  transform: translateX(-50%) rotate(45deg);
  box-shadow:
    16px 0 0 -5px rgba(172, 132, 54, 0.55),
    -16px 0 0 -5px rgba(172, 132, 54, 0.55),
    0 16px 0 -5px rgba(172, 132, 54, 0.55),
    0 -16px 0 -5px rgba(172, 132, 54, 0.55);
  pointer-events: none;
}

#location .location-grid {
  display: grid;
  max-width: min(1320px, calc(100% - 44px));
  grid-template-columns: 1fr;
  gap: clamp(44px, 5vw, 70px);
  align-items: center;
  margin: 0 auto;
}

#location .location-grid > div:first-child {
  max-width: 930px;
  margin: 0 auto;
  text-align: center;
}

#location .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 48px);
  margin: 0 0 clamp(24px, 2.8vw, 36px);
  color: #ad8436;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.82rem, 0.9vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-transform: uppercase;
}

#location .eyebrow::before,
#location .eyebrow::after {
  content: "";
  width: min(18vw, 270px);
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(174, 138, 66, 0.45), transparent);
}

#location #location-title {
  max-width: 980px;
  margin: 0 auto;
  color: #2f271f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.6rem, 6.3vw, 7.15rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

#location .location-grid > div:first-child > p:not(.eyebrow) {
  max-width: 780px;
  margin: clamp(24px, 2.7vw, 36px) auto 0;
  color: rgba(48, 41, 31, 0.68);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1rem, 1.12vw, 1.25rem);
  line-height: 1.72;
}

#location .pill-gold {
  min-width: 250px;
  min-height: 58px;
  justify-content: center;
  margin-top: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(198, 153, 64, 0.42);
  border-radius: 999px;
  color: #fffaf1;
  background: linear-gradient(135deg, #d9ae5a, #be9042 58%, #9a7432);
  box-shadow: 0 18px 38px rgba(147, 103, 39, 0.18);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}

#location .pill-gold:hover,
#location .pill-gold:focus-visible {
  filter: brightness(1.04) saturate(1.04);
  box-shadow: 0 24px 48px rgba(147, 103, 39, 0.24);
}

#location .landmarks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 26px);
  max-width: 1280px;
  margin: 0 auto;
}

#location .landmarks > span {
  position: relative;
  min-height: 136px;
  display: grid;
  grid-template-columns: 96px 1px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  padding: clamp(22px, 2.3vw, 30px) clamp(24px, 2.8vw, 38px);
  border: 1px solid rgba(183, 139, 62, 0.48);
  border-radius: 0;
  color: rgba(48, 41, 31, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 249, 238, 0.42));
  box-shadow: 0 20px 55px rgba(96, 69, 34, 0.07);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  line-height: 1.5;
}

#location .landmarks > span::before,
#location .landmarks > span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: rgba(183, 139, 62, 0.72);
  pointer-events: none;
}

#location .landmarks > span::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 14px;
}

#location .landmarks > span::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  border-bottom-right-radius: 14px;
}

#location .landmarks i,
#location .landmarks svg {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px solid rgba(183, 139, 62, 0.35);
  border-radius: 50%;
  color: #c99b49;
  stroke-width: 1.25;
}

#location .landmarks > span > i + .landmark-copy,
#location .landmarks > span > svg + .landmark-copy {
  position: relative;
}

#location .landmarks > span > i + .landmark-copy::before,
#location .landmarks > span > svg + .landmark-copy::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -28px;
  width: 1px;
  height: 78px;
  background: rgba(183, 139, 62, 0.24);
  transform: translateY(-50%);
}

#location .landmark-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

#location .landmarks strong {
  display: block;
  color: #30291f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2vw, 2.35rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

#location .landmarks > span:hover {
  transform: translateY(-5px);
  border-color: rgba(183, 139, 62, 0.72);
  box-shadow: 0 26px 64px rgba(96, 69, 34, 0.12);
}

@media (max-width: 1120px) {
  #location .landmarks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  #location.section.location {
    padding: 68px 0 76px;
  }

  #location .location-grid {
    max-width: min(100% - 32px, 640px);
    gap: 34px;
  }

  #location .eyebrow {
    gap: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  #location .eyebrow::before,
  #location .eyebrow::after {
    width: 50px;
  }

  #location #location-title {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  #location .landmarks {
    grid-template-columns: 1fr;
  }

  #location .landmarks > span {
    grid-template-columns: 72px 1px minmax(0, 1fr);
    gap: 18px;
    min-height: 118px;
    padding: 20px 18px;
  }

  #location .landmarks i,
  #location .landmarks svg {
    width: 70px;
    height: 70px;
    padding: 16px;
  }

  #location .landmarks > span > i + .landmark-copy::before,
  #location .landmarks > span > svg + .landmark-copy::before {
    left: -19px;
    height: 64px;
  }

  #location .landmarks strong {
    font-size: 1.75rem;
  }
}

/* Location card grid fix */
#location .landmarks > span {
  grid-template-columns: clamp(64px, 5.4vw, 86px) minmax(0, 1fr) !important;
  gap: clamp(18px, 2vw, 28px) !important;
  overflow: visible;
}

#location .landmarks i,
#location .landmarks svg {
  grid-column: 1;
  align-self: center;
  justify-self: center;
  flex: 0 0 auto;
}

#location .landmark-copy,
#location .landmarks > span > i + .landmark-copy,
#location .landmarks > span > svg + .landmark-copy {
  grid-column: 2 !important;
  min-width: 0;
  width: 100%;
  position: relative;
}

#location .landmarks > span > i + .landmark-copy::before,
#location .landmarks > span > svg + .landmark-copy::before {
  left: calc(clamp(18px, 2vw, 28px) / -2) !important;
}

#location .landmarks strong {
  max-width: 100%;
  overflow-wrap: normal;
}

@media (max-width: 720px) {
  #location .landmarks > span {
    grid-template-columns: 68px minmax(0, 1fr) !important;
    gap: 18px !important;
  }

  #location .landmarks > span > i + .landmark-copy::before,
  #location .landmarks > span > svg + .landmark-copy::before {
    left: -9px !important;
  }
}

/* Location eyebrow centering */
#location .location-grid > div:first-child {
  display: grid;
  justify-items: center;
}

#location .eyebrow {
  width: 100%;
  max-width: 720px;
  text-align: center !important;
}

#location .eyebrow {
  white-space: nowrap;
}

@media (max-width: 720px) {
  #location .eyebrow {
    max-width: min(100%, 460px);
    gap: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  #location .eyebrow::before,
  #location .eyebrow::after {
    flex: 1 1 46px;
    width: auto;
    min-width: 42px;
    max-width: 82px;
  }
}

/* Warm editorial blog section */
#blog.section.blog {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(76px, 7vw, 118px) 0;
  color: #30291f;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.78), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(183, 139, 62, 0.14), transparent 30%),
    linear-gradient(180deg, #f8eddb 0%, #fff8ec 52%, #f6ead6 100%);
}

#blog.section.blog::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(156, 125, 64, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 125, 64, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

#blog > .container {
  position: relative;
  z-index: 1;
}

.blog-head {
  display: grid;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto clamp(34px, 4vw, 56px);
  text-align: center;
}

.blog-head .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 26px);
  color: #ad6a43;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.7rem, 0.78vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-head .eyebrow::before,
.blog-head .eyebrow::after {
  content: "";
  width: clamp(58px, 7vw, 92px);
  height: 1px;
  background: linear-gradient(90deg, rgba(173, 106, 67, 0.16), rgba(173, 106, 67, 0.72));
}

.blog-head .eyebrow::after {
  transform: scaleX(-1);
}

.blog-head h2 {
  max-width: 820px;
  margin: 18px 0 0;
  color: #3a3328;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 5.6vw, 6.8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.blog-head > p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px auto 0;
  color: rgba(48, 41, 31, 0.68);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.98rem, 1.05vw, 1.16rem);
  line-height: 1.72;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 26px);
}

.blog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(151, 117, 50, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 249, 238, 0.46));
  box-shadow: 0 22px 54px rgba(84, 61, 35, 0.11);
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(173, 106, 67, 0.52);
  box-shadow: 0 30px 66px rgba(84, 61, 35, 0.16);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  display: block;
  filter: saturate(0.98) contrast(1.02);
  transition: transform 900ms cubic-bezier(0.19, 1, 0.22, 1), filter 900ms ease;
}

.blog-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.blog-card > div {
  display: grid;
  gap: 13px;
  padding: clamp(20px, 2vw, 28px);
}

.blog-card span {
  color: #ad6a43;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0;
  color: #3a3328;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 2vw, 2.45rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.blog-card p {
  margin: 0;
  color: rgba(48, 41, 31, 0.68);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.62;
}

.blog-card a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: #8f4f3a;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.blog-card a svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
}

@media (max-width: 1120px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  #blog.section.blog {
    padding: 64px 0 72px;
  }

  .blog-head {
    margin-bottom: 30px;
  }

  .blog-head .eyebrow {
    gap: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .blog-head .eyebrow::before,
  .blog-head .eyebrow::after {
    flex: 1 1 44px;
    width: auto;
    min-width: 38px;
    max-width: 78px;
  }

  .blog-head h2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

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

  .blog-card img {
    aspect-ratio: 1.24 / 1;
  }
}

/* Lower editorial sections alignment */
#investment.section.investment,
#enquiry.section.enquiry,
.section.trust-faq {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #30291f;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.74), transparent 26%),
    radial-gradient(circle at 86% 76%, rgba(211, 171, 91, 0.12), transparent 28%),
    linear-gradient(180deg, #fff8ec 0%, #f6ead6 100%);
}

#investment.section.investment {
  padding: clamp(82px, 8vw, 128px) 0 clamp(66px, 7vw, 108px);
}

#enquiry.section.enquiry,
.section.trust-faq {
  padding: clamp(72px, 7vw, 112px) 0;
}

#investment > .container,
#enquiry > .container,
.trust-faq > .container {
  position: relative;
  z-index: 1;
}

#investment .eyebrow,
#enquiry .eyebrow,
.trust-faq .eyebrow {
  color: #ad6a43;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.7rem, 0.78vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.25;
  text-transform: uppercase;
}

#investment h2,
#enquiry h2,
.trust-faq h2 {
  color: #3a3328;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

#investment h2 {
  max-width: 880px;
  font-size: clamp(3.8rem, 6vw, 7rem);
}

#enquiry h2,
.trust-faq h2 {
  font-size: clamp(3.2rem, 5.2vw, 6.1rem);
}

#enquiry p,
.trust-faq p,
#investment .investment-grid span,
#enquiry .contact-stack a,
.trust-faq blockquote,
.trust-faq summary {
  font-family: "Montserrat", Arial, sans-serif;
}

#enquiry .enquiry-grid > div > p {
  max-width: 560px;
  color: rgba(48, 41, 31, 0.68);
  font-size: clamp(0.98rem, 1vw, 1.12rem);
  line-height: 1.72;
}

#investment .investment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 820px;
  margin-top: clamp(26px, 3vw, 40px);
}

#investment .investment-grid span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid rgba(151, 117, 50, 0.35);
  border-radius: 0;
  color: rgba(48, 41, 31, 0.74);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

#investment .pill-white {
  margin-top: clamp(26px, 3vw, 40px);
  border-color: rgba(78, 87, 55, 0.32);
  color: #fff9ef;
  background: linear-gradient(135deg, #6f7441, #4f5a34);
  box-shadow: 0 16px 32px rgba(52, 56, 33, 0.18);
}

#enquiry .enquiry-grid,
.trust-faq .trust-faq-grid {
  align-items: center;
}

#enquiry .contact-stack {
  margin-top: 28px;
}

#enquiry .contact-stack a {
  color: rgba(48, 41, 31, 0.78);
  font-size: 0.95rem;
}

#enquiry .contact-stack svg {
  color: #ad6a43;
  stroke-width: 1.6;
}

#enquiry .lead-form {
  border: 1px solid rgba(151, 117, 50, 0.32);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 249, 238, 0.5));
  box-shadow: 0 24px 68px rgba(91, 66, 34, 0.12);
  backdrop-filter: none;
}

#enquiry .lead-form label span,
#enquiry .form-note {
  color: rgba(48, 41, 31, 0.66);
  font-family: "Montserrat", Arial, sans-serif;
}

#enquiry .lead-form input,
#enquiry .lead-form select,
#enquiry .lead-form textarea {
  border-color: rgba(151, 117, 50, 0.28);
  color: #30291f;
  background: rgba(255, 255, 255, 0.74);
  font-family: "Montserrat", Arial, sans-serif;
}

#enquiry .lead-form input::placeholder,
#enquiry .lead-form textarea::placeholder {
  color: rgba(48, 41, 31, 0.42);
}

#enquiry .lead-form input:focus,
#enquiry .lead-form select:focus,
#enquiry .lead-form textarea:focus {
  border-color: rgba(173, 106, 67, 0.7);
  box-shadow: 0 0 0 3px rgba(173, 106, 67, 0.12);
}

#enquiry .lead-form .pill-gold {
  color: #fffaf1;
  background: linear-gradient(135deg, #c57551, #ad5f41 58%, #8e4d35);
  border-color: rgba(173, 95, 65, 0.35);
  box-shadow: 0 18px 38px rgba(173, 95, 65, 0.2);
}

.trust-faq .quotes {
  display: grid;
  gap: 14px;
}

.trust-faq blockquote,
.trust-faq details {
  border: 1px solid rgba(151, 117, 50, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 249, 238, 0.42));
  box-shadow: 0 20px 50px rgba(91, 66, 34, 0.08);
  backdrop-filter: none;
}

.trust-faq blockquote {
  color: #3a3328;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 500;
  line-height: 1.15;
}

.trust-faq summary {
  color: #3a3328;
  font-weight: 700;
}

.trust-faq details p {
  color: rgba(48, 41, 31, 0.7);
}

@media (max-width: 900px) {
  #investment h2,
  #enquiry h2,
  .trust-faq h2 {
    font-size: clamp(3rem, 11vw, 5.2rem);
  }

  #investment .investment-grid {
    max-width: none;
  }
}

@media (max-width: 620px) {
  #investment.section.investment,
  #enquiry.section.enquiry,
  .section.trust-faq {
    padding: 64px 0;
  }

  #investment h2,
  #enquiry h2,
  .trust-faq h2 {
    line-height: 1;
  }

  #investment .investment-grid span {
    width: 100%;
    justify-content: flex-start;
  }
}

.mobile-hero-badges {
  display: none;
}

@media (max-width: 760px) {
  body {
    background: #fff8ec;
  }

  .site-header,
  .site-header.is-scrolled {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1200;
    min-height: 0;
    height: 104px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 22px 22px 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header .brand {
    width: 112px;
    height: 66px;
    padding: 0;
    justify-content: flex-start;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-header .brand-logo {
    display: block !important;
    width: 108px;
    max-width: 108px;
    max-height: 58px;
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: none;
  }

  .nav-strip {
    display: none;
  }

  .header-actions {
    grid-column: 3;
  }

  .menu-button {
    width: 58px;
    height: 58px;
    gap: 6px;
    border: 0;
    border-radius: 50%;
    color: #fff8ec;
    background: radial-gradient(circle at 34% 24%, #707143, #42472a 72%);
    box-shadow: 0 16px 30px rgba(40, 42, 24, 0.2);
  }

  .menu-button span {
    width: 25px;
    height: 2px;
    background: currentColor;
  }

  .hero {
    min-height: 100svh;
    margin-top: 0;
    overflow: hidden;
    color: #4f4f33;
    background: #f7ead9;
  }

  .hero-art {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 56% bottom;
    transform: none;
    filter: saturate(0.94) contrast(0.98);
    animation: none;
  }

  .hero-shade {
    display: block !important;
    opacity: 1 !important;
    background:
      linear-gradient(180deg, rgba(255, 248, 236, 0.98) 0%, rgba(255, 248, 236, 0.95) 36%, rgba(255, 238, 213, 0.84) 54%, rgba(255, 238, 213, 0.14) 70%),
      linear-gradient(180deg, rgba(255, 248, 236, 0) 58%, rgba(38, 31, 21, 0.26) 100%);
  }

  .hero-shell {
    width: 100%;
    min-height: 100svh !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 118px 18px 20px !important;
    text-align: center;
  }

  .hero-kicker {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    color: transparent;
    font-size: 0;
    line-height: 1;
    text-align: center;
  }

  .hero-kicker::before {
    content: "Luxury Spanish Farmhouses";
    display: inline-block;
    color: #ad563f;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(0.67rem, 2.8vw, 0.82rem);
    font-weight: 700;
    letter-spacing: 0.24em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .hero-title,
  .hero h1 {
    width: min(332px, calc(100vw - 44px));
    max-width: min(332px, calc(100vw - 44px)) !important;
    margin: 22px auto 0;
    color: #ad563f;
    font-family: var(--display-serif);
    font-size: clamp(3.05rem, 12.9vw, 3.5rem);
    font-weight: 300;
    line-height: 0.96;
    letter-spacing: 0.9px;
    text-align: center;
    text-shadow: none;
  }

  .hero h1 span {
    display: block;
    white-space: nowrap;
  }

  .hero h1::after {
    width: 96px;
    height: 1px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, transparent, rgba(173, 86, 63, 0.78), transparent);
  }

  .hero-lower {
    width: 100%;
    display: grid;
    justify-items: center;
    gap: 20px;
    margin-top: 10px;
  }

  .hero-lower p {
    max-width: min(292px, calc(100vw - 64px));
    margin: 0 auto;
    color: transparent;
    font-size: 0;
    line-height: 1;
    text-align: center;
    text-shadow: none;
  }

  .hero-lower p::before {
    content: "Spanish charm. Premium living.";
    color: #4c4f36;
    font-family: var(--display-serif);
    font-size: clamp(1.12rem, 4.8vw, 1.34rem);
    font-weight: 500;
    line-height: 1.18;
    text-shadow: 0 1px 12px rgba(255, 248, 236, 0.95);
  }

  .hero-ctas {
    width: auto;
    justify-content: center;
  }

  .hero .pill-white {
    display: none;
  }

  .hero .pill-gold {
    width: auto;
    min-width: 174px;
    min-height: 58px;
    padding: 14px 30px;
    gap: 16px;
    color: #fff8ec;
    background: linear-gradient(135deg, #ca6e4e, #b85d40 62%, #a24e36);
    border: 1px solid rgba(158, 76, 47, 0.28);
    border-radius: 12px;
    box-shadow: 0 20px 38px rgba(125, 70, 44, 0.22);
    font-size: 0;
    letter-spacing: 0;
    text-transform: none;
  }

  .hero .pill-gold::before {
    content: "Explore Now";
    font-family: var(--display-serif);
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1;
  }

  .hero .pill-gold svg {
    width: 20px;
    height: 20px;
  }

  .hero-badges {
    display: none;
  }

  .mobile-hero-badges {
    position: relative;
    z-index: 2;
    width: min(100%, 360px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: auto auto 0;
    padding: 20px 12px 18px;
    list-style: none;
    color: #55563c;
    background: rgba(255, 248, 236, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 22px;
    box-shadow: 0 24px 58px rgba(44, 35, 22, 0.22);
    backdrop-filter: blur(12px);
  }

  .mobile-hero-badges li {
    min-width: 0;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 10px;
    padding: 0 7px;
    text-align: center;
    border-left: 1px solid rgba(103, 92, 65, 0.17);
  }

  .mobile-hero-badges li:first-child {
    border-left: 0;
  }

  .mobile-hero-badges svg {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 50%;
    color: #565b3b;
    background: rgba(223, 218, 198, 0.58);
    stroke-width: 1.65;
  }

  .mobile-hero-badges span {
    min-height: 2.4em;
    display: grid;
    place-items: start center;
    color: #55513d;
    font-family: var(--display-serif);
    font-size: clamp(1rem, 5.1vw, 1.32rem);
    font-weight: 500;
    line-height: 1.05;
  }
}

@media (max-width: 390px) {
  .hero-shell {
    padding-top: 112px !important;
  }

  .hero-title,
  .hero h1 {
    font-size: clamp(3.45rem, 15.2vw, 4.1rem);
  }

  .hero-lower {
    gap: 16px;
    margin-top: 14px;
  }

  .hero .pill-gold {
    min-height: 54px;
    padding-inline: 26px;
  }

  .mobile-hero-badges {
    width: min(100%, 348px);
    padding-inline: 8px;
    border-radius: 20px;
  }

  .mobile-hero-badges span {
    font-size: 1rem;
  }
}

/* Gallery section warm editorial polish */
.section.gallery {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #3d372b;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.74), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(194, 112, 72, 0.1), transparent 28%),
    linear-gradient(180deg, #fff8ec 0%, #f5e6ce 100%);
}

.section.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(143, 103, 62, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 103, 62, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}

.gallery .section-head {
  max-width: 920px;
  margin-bottom: clamp(30px, 4vw, 54px);
}

.gallery .section-head .eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 clamp(28px, 3.5vw, 48px);
  color: #ad6a43;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.72rem, 0.82vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.26em;
  line-height: 1.15;
  text-transform: uppercase;
}

.gallery .section-head .eyebrow::after {
  content: "";
  width: 118px;
  height: 1px;
  background: rgba(173, 106, 67, 0.36);
}

.gallery #gallery-title {
  max-width: 10ch;
  margin: 0;
  color: #3d372b;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.4rem, 7.1vw, 8.4rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.gallery-tabs {
  gap: 10px;
  margin-bottom: clamp(22px, 3vw, 34px);
  scrollbar-width: none;
}

.gallery-tabs::-webkit-scrollbar {
  display: none;
}

.gallery-tabs button {
  min-height: 42px;
  border: 1px solid rgba(151, 117, 50, 0.28);
  border-radius: 999px;
  padding: 9px 17px;
  color: rgba(61, 55, 43, 0.72);
  background: rgba(255, 250, 239, 0.56);
  box-shadow: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-tabs button:hover,
.gallery-tabs button:focus-visible {
  color: #8e4d35;
  border-color: rgba(173, 106, 67, 0.48);
  background: rgba(255, 250, 239, 0.82);
}

.gallery-tabs button.active {
  color: #fff8ec;
  border-color: rgba(173, 95, 65, 0.36);
  background: linear-gradient(135deg, #c57551, #ad5f41 58%, #8e4d35);
  box-shadow: 0 14px 30px rgba(173, 95, 65, 0.18);
}

.gallery-grid {
  gap: 16px;
}

.gallery-grid figure {
  border: 1px solid rgba(151, 117, 50, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 250, 239, 0.5), rgba(244, 231, 207, 0.24)),
    rgba(255, 248, 236, 0.44);
  box-shadow: 0 18px 44px rgba(91, 66, 34, 0.09);
}

.gallery-grid figure:hover {
  transform: translateY(-5px);
  border-color: rgba(173, 106, 67, 0.48);
  box-shadow: 0 28px 64px rgba(91, 66, 34, 0.16);
}

.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(43, 32, 22, 0.48));
  pointer-events: none;
}

.gallery-grid figcaption {
  z-index: 1;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 12px;
  border: 1px solid rgba(255, 248, 236, 0.62);
  border-radius: 4px;
  color: #fff8ec;
  background: rgba(72, 55, 36, 0.62);
  box-shadow: 0 12px 28px rgba(35, 24, 14, 0.22);
  backdrop-filter: blur(10px);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .section.gallery {
    padding: 68px 0 76px;
  }

  .gallery .section-head {
    margin-bottom: 24px;
  }

  .gallery .section-head .eyebrow {
    gap: 12px;
    margin-bottom: 28px;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }

  .gallery .section-head .eyebrow::after {
    width: 72px;
  }

  .gallery #gallery-title {
    max-width: 9.5ch;
    font-size: clamp(3.2rem, 14vw, 4.8rem);
    line-height: 0.96;
  }

  .gallery-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .gallery-tabs button {
    flex: 0 0 auto;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .gallery-grid {
    gap: 12px;
  }

  .gallery-grid figure,
  .gallery-grid figure:first-child {
    height: 360px;
  }
}

/* Mobile-only Private Leisure second image swap */
.visual-band-media {
  display: block;
  min-height: clamp(680px, 86svh, 900px);
  overflow: hidden;
}

.visual-band-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.86) contrast(0.98) sepia(0.12);
  transform: scale(1.01);
}

@media (max-width: 1024px) {
  .visual-band-media {
    min-height: auto;
  }

  .visual-band-media img {
    height: clamp(380px, 62vw, 560px);
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .visual-band-media img {
    height: 360px;
  }
}

/* Mobile auto lead popup */
.mobile-lead-modal {
  align-items: flex-end;
}

.mobile-lead-panel {
  width: min(100%, 440px);
  max-height: calc(100svh - 24px);
  overflow-y: auto;
  border: 1px solid rgba(151, 117, 50, 0.32);
  border-radius: 24px 24px 0 0;
  color: #30291f;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.9), transparent 32%),
    linear-gradient(180deg, #fff8ec 0%, #f5e6ce 100%);
  box-shadow: 0 -24px 64px rgba(51, 35, 20, 0.24);
}

.mobile-lead-panel h2 {
  margin-top: 12px;
  color: #3d372b;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.45rem, 10vw, 3.35rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.mobile-lead-panel > p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(48, 41, 31, 0.68);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.62;
}

.mobile-lead-form {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.mobile-lead-form label,
.mobile-lead-form .form-note,
.mobile-lead-form .full {
  grid-column: 1;
}

.mobile-lead-form label span,
.mobile-lead-form .form-note {
  color: rgba(48, 41, 31, 0.66);
  font-family: "Montserrat", Arial, sans-serif;
}

.mobile-lead-form input,
.mobile-lead-form select {
  border-color: rgba(151, 117, 50, 0.28);
  color: #30291f;
  background: rgba(255, 255, 255, 0.74);
}

.mobile-lead-form input::placeholder {
  color: rgba(48, 41, 31, 0.42);
}

.mobile-lead-form .pill-gold {
  min-height: 54px;
  color: #fffaf1;
  background: linear-gradient(135deg, #ca6e4e, #b85d40 62%, #a24e36);
  border-color: rgba(173, 95, 65, 0.35);
  box-shadow: 0 16px 34px rgba(173, 95, 65, 0.2);
}

@media (min-width: 761px) {
  .mobile-lead-modal {
    align-items: center;
    justify-content: center;
    padding: 28px;
  }

  .mobile-lead-panel {
    width: min(640px, calc(100vw - 72px));
    max-height: min(860px, calc(100svh - 56px));
    border-radius: 24px;
  }

  .mobile-lead-form {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-lead-form .full,
  .mobile-lead-form .form-note {
    grid-column: 1 / -1;
  }
}

/* Keep only the new popup lead form visible. */
#enquiry .lead-form {
  display: none;
}

#enquiry .enquiry-grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

#enquiry .enquiry-grid > div {
  text-align: center;
}

#enquiry .enquiry-grid > div > p,
#enquiry .contact-stack {
  margin-inline: auto;
}

#enquiry .contact-stack {
  justify-items: center;
}

/* Desktop brochure popup polish */
@media (min-width: 761px) {
  .mobile-lead-panel {
    width: min(820px, calc(100vw - 72px));
    max-height: calc(100svh - 36px);
    overflow-y: visible;
    padding: clamp(24px, 2.6vw, 34px);
  }

  .mobile-lead-panel h2 {
    max-width: 680px;
    margin-top: 8px;
    font-size: clamp(2.7rem, 3.8vw, 4.15rem);
    line-height: 0.94;
  }

  .mobile-lead-panel > p:not(.eyebrow) {
    max-width: 660px;
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .mobile-lead-form {
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    margin-top: 18px;
  }

  .mobile-lead-form label {
    grid-column: auto;
  }

  .mobile-lead-form input,
  .mobile-lead-form select {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .mobile-lead-form .pill-gold {
    min-height: 42px;
    margin-top: 2px;
  }

  .mobile-lead-form .full,
  .mobile-lead-form .form-note {
    grid-column: 1 / -1;
  }

  .mobile-lead-form .form-note {
    font-size: 0.72rem;
    line-height: 1.45;
  }
}

/* Footer location map polish */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(76px, 7vw, 112px) 0 34px;
  color: rgba(255, 248, 236, 0.78);
  border-top: 1px solid rgba(244, 211, 176, 0.24);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 248, 236, 0.18), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(180, 90, 66, 0.2), transparent 30%),
    linear-gradient(135deg, #54442e 0%, #342a1d 52%, #211b13 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 248, 236, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 236, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 1.12fr) minmax(150px, 0.58fr) minmax(190px, 0.78fr) minmax(300px, 1.22fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}

.footer-grid > div {
  min-width: 0;
}

.site-footer .footer-brand {
  width: clamp(190px, 16vw, 240px);
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 3.55 / 1;
  display: inline-grid;
  place-items: center;
  box-sizing: border-box;
  padding: 12px 18px;
  border: 1px solid rgba(255, 248, 236, 0.32);
  border-radius: 16px;
  background: rgba(255, 248, 236, 0.92);
  box-shadow: 0 20px 46px rgba(10, 7, 4, 0.2);
}

.site-footer .footer-brand .brand-logo {
  width: 100%;
  max-width: 184px;
  max-height: 58px;
  height: auto;
  object-fit: contain;
}

.site-footer p {
  color: rgba(255, 248, 236, 0.72);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.7;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: #fff8ec;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-grid a {
  width: fit-content;
  display: block;
  margin-top: 10px;
  color: rgba(255, 248, 236, 0.72);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.94rem;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #f4d3b0;
  transform: translateX(4px);
}

.footer-whatsapp {
  width: fit-content;
  min-height: 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 16px !important;
  padding: 11px 18px;
  border: 1px solid rgba(180, 90, 66, 0.42);
  border-radius: 999px;
  color: #fff8ec !important;
  background: linear-gradient(135deg, #c86a4f, #b45a42, #8f4f3a);
  box-shadow: 0 18px 38px rgba(18, 12, 7, 0.24);
  font-weight: 800;
}

.footer-whatsapp:hover,
.footer-whatsapp:focus-visible {
  color: #fff8ec !important;
  transform: translateY(-2px);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-grid .footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  margin-top: 0;
  border: 1px solid rgba(255, 248, 236, 0.28);
  border-radius: 999px;
  padding: 0;
  color: #fff8ec;
  background: rgba(255, 248, 236, 0.92);
  box-shadow: 0 14px 26px rgba(18, 12, 7, 0.18);
  backdrop-filter: blur(10px);
}

.footer-grid .footer-socials a:hover,
.footer-grid .footer-socials a:focus-visible {
  color: #2b2118;
  background: #f4d3b0;
  transform: translateY(-2px);
}

.footer-socials img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.footer-map-card {
  padding: clamp(16px, 1.8vw, 22px);
  border: 1px solid rgba(255, 248, 236, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.12), rgba(255, 248, 236, 0.045));
  box-shadow: 0 24px 58px rgba(12, 8, 4, 0.24);
}

.footer-map-card p {
  margin: -4px 0 14px;
  color: rgba(255, 248, 236, 0.68);
  font-size: 0.92rem;
}

.footer-map-frame {
  overflow: hidden;
  border: 1px solid rgba(244, 211, 176, 0.28);
  border-radius: 16px;
  background: rgba(255, 248, 236, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 236, 0.06);
}

.footer-map-frame iframe {
  width: 100%;
  height: clamp(230px, 19vw, 300px);
  display: block;
  border: 0;
  filter: sepia(0.08) saturate(0.9) contrast(0.98);
}

.disclaimer {
  position: relative;
  z-index: 1;
  margin-top: clamp(28px, 3vw, 42px);
  padding-top: 24px;
  border-top: 1px solid rgba(244, 211, 176, 0.18);
}

.disclaimer p {
  max-width: 1040px;
  color: rgba(255, 248, 236, 0.55);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.82rem;
  line-height: 1.7;
}

@media (max-width: 1120px) {
  .footer-grid {
    grid-template-columns: 1.1fr 0.8fr;
  }

  .footer-map-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding: 64px 0 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer .footer-brand {
    width: min(220px, 100%);
  }

  .footer-map-card {
    order: -1;
    padding: 14px;
    border-radius: 18px;
  }

  .footer-map-frame iframe {
    height: 260px;
  }
}

/* Reference-style lead enquiry section */
#enquiry.section.enquiry {
  padding: clamp(56px, 6vw, 78px) 0;
  background:
    radial-gradient(circle at 52% 15%, rgba(255, 255, 255, 0.62), transparent 24%),
    radial-gradient(circle at 74% 74%, rgba(216, 179, 111, 0.16), transparent 26%),
    linear-gradient(180deg, #fff8ed 0%, #f6ead6 100%);
}

#enquiry > .container.enquiry-grid {
  width: min(832px, calc(100% - 42px));
  display: grid;
  grid-template-columns: minmax(0, 390px) minmax(340px, 380px);
  gap: clamp(48px, 5vw, 62px);
  align-items: center;
  justify-content: center;
}

#enquiry .enquiry-grid > div {
  text-align: left;
}

#enquiry .eyebrow {
  margin: 0 0 18px;
  color: #7a7166;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.34em;
}

#enquiry h2 {
  max-width: 430px;
  margin: 0;
  color: #342d23;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.45rem, 4.55vw, 4.45rem);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: 0;
}

#enquiry .enquiry-grid > div > p {
  max-width: 450px;
  margin: 18px 0 0;
  color: rgba(52, 45, 35, 0.64);
  font-size: 0.84rem;
  line-height: 1.72;
}

#enquiry .contact-stack {
  width: max-content;
  max-width: 100%;
  display: grid;
  justify-items: start;
  gap: 9px;
  margin: 19px 0 0;
}

#enquiry .contact-stack a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #62594d;
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

#enquiry .contact-stack svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: #c37656;
  stroke-width: 1.7;
}

#enquiry .lead-form {
  width: 100%;
  max-width: 380px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  padding: 23px 22px;
  border: 1px solid rgba(151, 117, 50, 0.3);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 249, 238, 0.52));
  box-shadow: 0 24px 56px rgba(91, 66, 34, 0.13);
}

#enquiry .lead-form label {
  min-width: 0;
  gap: 6px;
}

#enquiry .lead-form label span {
  color: #6c6256;
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.1;
}

#enquiry .lead-form input,
#enquiry .lead-form select,
#enquiry .lead-form textarea {
  width: 100%;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(151, 117, 50, 0.3);
  border-radius: 0;
  color: #342d23;
  background: rgba(255, 255, 255, 0.72);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
}

#enquiry .lead-form textarea {
  min-height: 83px;
  padding: 11px;
}

#enquiry .lead-form input::placeholder,
#enquiry .lead-form textarea::placeholder {
  color: rgba(52, 45, 35, 0.36);
}

#enquiry .lead-form input:focus,
#enquiry .lead-form select:focus,
#enquiry .lead-form textarea:focus {
  border-color: rgba(173, 106, 67, 0.72);
  box-shadow: 0 0 0 3px rgba(173, 106, 67, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

#enquiry .lead-form .full,
#enquiry .lead-form .form-note {
  grid-column: 1 / -1;
}

#enquiry .lead-form .pill-gold {
  min-height: 31px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #fffaf1;
  background: linear-gradient(135deg, #c97853, #ad5f41 62%, #915039);
  box-shadow: 0 18px 34px rgba(173, 95, 65, 0.19);
  font-size: 0.75rem;
  font-weight: 800;
}

#enquiry .form-note {
  margin: 0;
  color: rgba(52, 45, 35, 0.46);
  font-size: 0.66rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  #enquiry > .container.enquiry-grid {
    width: min(640px, calc(100% - 36px));
    grid-template-columns: 1fr;
    gap: 32px;
  }

  #enquiry .lead-form {
    max-width: none;
  }
}

@media (max-width: 560px) {
  #enquiry.section.enquiry {
    padding: 58px 0;
  }

  #enquiry h2 {
    font-size: clamp(3.05rem, 13vw, 4.05rem);
  }

  #enquiry .lead-form {
    grid-template-columns: 1fr;
    padding: 20px 18px;
  }

  #enquiry .lead-form label,
  #enquiry .lead-form .full,
  #enquiry .lead-form .form-note {
    grid-column: 1 / -1;
  }
}

/* Project video section */
.project-video {
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 248, 236, 0.8), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(193, 111, 78, 0.16), transparent 30%),
    linear-gradient(180deg, #fbf3e7 0%, #f3e2ca 100%);
}

.project-video .section-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.video-frame {
  width: min(1080px, 100%);
  aspect-ratio: 16 / 9;
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(103, 76, 48, 0.18);
  border-radius: 24px;
  background: #15100b;
  box-shadow: 0 34px 80px rgba(70, 45, 24, 0.22);
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  background: #15100b;
  object-fit: contain;
}

@media (max-width: 760px) {
  .project-video {
    padding-block: 58px;
  }

  .video-frame {
    width: min(100%, calc(100vw - 28px));
    margin-top: 24px;
    border-radius: 18px;
  }
}


/* Elementor wrapper reset */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

.elementor,
.elementor-section,
.elementor-container,
.elementor-widget-wrap,
.elementor-widget-container,
.elementor-widget-html,
.e-con,
.e-con-inner {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
}

/* Full viewport landing wrapper */
#bagicha-landing {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow-x: hidden !important;
  background: #f8efdf;
}

/* Header full width fix */
#bagicha-landing .site-header {
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;
  z-index: 9999 !important;
}

/* Hero full width */
#bagicha-landing .hero {
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 !important;
}

/* Footer full width fix */
#bagicha-landing .site-footer {
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Footer content alignment */
#bagicha-landing .site-footer .container,
#bagicha-landing .footer-grid,
#bagicha-landing .disclaimer {
  width: min(1200px, calc(100% - 32px)) !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#bagicha-landing .footer-grid {
  display: grid !important;
  grid-template-columns: 1.1fr 0.65fr 0.8fr 1fr !important;
  gap: 42px !important;
  align-items: start !important;
}

#bagicha-landing .footer-map-frame iframe {
  width: 100% !important;
  min-height: 260px !important;
}

/* Mobile fix */
@media (max-width: 900px) {
  #bagicha-landing .footer-grid {
    grid-template-columns: 1fr !important;
  }

  #bagicha-landing .site-header {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  #bagicha-landing .nav-strip {
    display: none !important;
  }
}







