@font-face {
  font-family: "Metropolis";
  src: url("../fonts/metropolis/metropolis-regular-webfont.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("../fonts/metropolis/metropolis-semibold-webfont.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Domine";
  src: url("../fonts/domine/domine-regular-webfont.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Domine";
  src: url("../fonts/domine/domine-bold-webfont.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --primary: #101d2d;
  --primary-soft: #192b3e;
  --secondary: #485c86;
  --accent: #a33b62;
  --accent-deep: #7e294a;
  --blue: #1373a0;
  --plum: #754d77;
  --background: #f5f1ea;
  --surface: #fffdf8;
  --surface-muted: #eae4dc;
  --text: #152131;
  --muted: #66707a;
  --border: rgba(16, 29, 45, 0.16);
  --light-border: rgba(255, 255, 255, 0.24);
  --white: #fffdf8;
  --display: "Domine", Georgia, serif;
  --sans: "Metropolis", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(16, 29, 45, 0.12);
  --header-height: 70px;
  --shell: min(100% - 32px, 1320px);
  --section-space: clamp(5.5rem, 11vw, 10rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--text);
  background: var(--background);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.site-icon {
  width: 1.15em;
  height: 1.15em;
  display: block;
  flex: 0 0 auto;
}

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

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

img {
  height: auto;
}

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

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

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

::selection {
  color: var(--white);
  background: var(--accent);
}

:focus-visible {
  outline: 3px solid #e7b5c8;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--primary);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  content: "";
  background: currentColor;
}

.display-heading {
  max-width: 18ch;
  margin-top: 1.15rem;
  font-family: var(--display);
  font-size: clamp(2.35rem, 7.4vw, 5.65rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h1 em,
h2 em,
blockquote em {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--accent);
}

.button-primary:hover {
  background: var(--accent-deep);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  color: var(--primary);
  background: var(--white);
  border-color: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--primary);
}

.button-dark:hover {
  background: var(--secondary);
}

.button-text {
  min-height: 46px;
  color: var(--primary);
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding-block: 0.35rem;
  border-bottom: 1px solid currentColor;
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 200ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.text-link-light {
  color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled,
.inner-page .site-header,
.legal-page .site-header,
.error-page .site-header {
  min-height: var(--header-height);
  color: var(--primary);
  background: rgba(255, 253, 248, 0.94);
  border-color: rgba(16, 29, 45, 0.12);
  box-shadow: 0 6px 28px rgba(16, 29, 45, 0.055);
  backdrop-filter: blur(12px);
}

.brand {
  position: relative;
  z-index: 2;
  width: 118px;
  height: 40px;
  flex: 0 0 auto;
  display: block;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 180ms ease;
}

.brand-logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light,
.inner-page .brand-logo-light,
.legal-page .brand-logo-light,
.error-page .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark,
.inner-page .brand-logo-dark,
.legal-page .brand-logo-dark,
.error-page .brand-logo-dark {
  opacity: 1;
}

body.menu-open .site-header {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.menu-open .brand-logo-light {
  opacity: 1;
}

body.menu-open .brand-logo-dark {
  opacity: 0;
}

.inner-page .site-header:not(.is-scrolled) {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.inner-page .site-header:not(.is-scrolled) .brand-logo-light {
  opacity: 1;
}

.inner-page .site-header:not(.is-scrolled) .brand-logo-dark {
  opacity: 0;
}

.inner-page .site-header:not(.is-scrolled) .menu-toggle {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.desktop-nav {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.header-enquire {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.8rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.54);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-enquire:hover {
  color: var(--primary);
  background: var(--white);
}

.header-call {
  display: none;
}

.site-header.is-scrolled .header-enquire,
.inner-page .header-enquire,
.legal-page .header-enquire,
.error-page .header-enquire {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
}

.menu-toggle {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  gap: 7px;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(16, 29, 45, 0.14);
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled .menu-toggle,
.inner-page .menu-toggle,
.legal-page .menu-toggle,
.error-page .menu-toggle,
body.menu-open .menu-toggle {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.menu-toggle span {
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 450;
  visibility: hidden;
  color: var(--white);
  background: var(--primary);
  opacity: 0;
  transition: opacity 260ms ease, visibility 260ms;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--header-height) + 2.5rem) 1.5rem max(2rem, env(safe-area-inset-bottom));
}

.mobile-menu-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-menu-heading img {
  width: 108px;
}

.mobile-menu .eyebrow {
  color: #d5a5b8;
  margin: 0;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--display);
  font-size: clamp(1.65rem, 7.5vw, 2.7rem);
}

.mobile-menu nav a[aria-current="page"] {
  color: #e1adc1;
}

.mobile-menu-contact {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.mobile-menu-contact > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.mobile-menu-contact > div a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.mobile-menu-contact .mobile-menu-cta {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  color: var(--white);
  background: var(--accent);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Entry disclaimer */
.disclaimer-shell {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  visibility: hidden;
  opacity: 0;
  transition: opacity 300ms ease, visibility 300ms;
}

.disclaimer-shell[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

.disclaimer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 15, 24, 0.82);
  backdrop-filter: blur(12px);
}

.disclaimer-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: calc(100dvh - 2rem);
  overflow: auto;
  padding: clamp(1.35rem, 5vw, 3.5rem);
  border-top: 4px solid var(--accent);
  background: var(--surface);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.38);
  transform: translateY(18px) scale(0.985);
  transition: transform 380ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.disclaimer-shell[aria-hidden="false"] .disclaimer-dialog {
  transform: none;
}

.disclaimer-mark {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  color: rgba(16, 29, 45, 0.05);
  font-family: var(--display);
  font-size: clamp(3.8rem, 15vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.disclaimer-dialog h2 {
  position: relative;
  margin: 1rem 0 1.25rem;
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.disclaimer-copy {
  position: relative;
  max-height: min(31vh, 260px);
  overflow-y: auto;
  padding: 0 1rem 0 0;
  color: #4c5660;
  font-size: 0.86rem;
  line-height: 1.75;
  scrollbar-color: var(--accent) var(--surface-muted);
  scrollbar-width: thin;
}

.disclaimer-actions {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.5rem;
}

.disclaimer-footnote {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.69rem;
  text-align: center;
}

/* Hero */
.home-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--primary);
}

.hero-media,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-scene {
  position: absolute;
  inset: -2%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  opacity: 0;
  will-change: opacity, transform;
  animation: hero-cinematic-cycle 24s cubic-bezier(0.45, 0, 0.3, 1) infinite both;
}

.hero-scene-villas {
  object-position: 54% center;
  animation-delay: -2s;
}

.hero-scene-nature {
  object-position: 50% center;
  animation-delay: -10s;
}

.hero-scene-city {
  object-position: 52% center;
  animation-delay: -18s;
}

.hero-wash {
  background:
    linear-gradient(180deg, rgba(9, 17, 27, 0.55) 0%, rgba(9, 17, 27, 0.12) 35%, rgba(9, 17, 27, 0.78) 100%),
    linear-gradient(90deg, rgba(9, 17, 27, 0.82) 0%, rgba(9, 17, 27, 0.42) 58%, rgba(9, 17, 27, 0.12) 100%);
}

.hero-film-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-content: end;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: max(6rem, calc(env(safe-area-inset-bottom) + 5rem));
}

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

.hero-kicker {
  margin-bottom: 1.1rem;
  color: #f0d3df;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-copy h1,
.inner-hero h1,
.projects-hero h1,
.contact-hero h1,
.error-content h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 12.5vw, 8.2rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.hero-copy h1 em {
  display: block;
  color: #e5b1c5;
}

.hero-intro {
  max-width: 650px;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.95rem, 3.5vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-side-note {
  display: none;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-rera {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  width: max-content;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(10, 22, 35, 0.32);
}

.hero-meta span {
  color: #e5b1c5;
}

.hero-rera strong {
  color: var(--white);
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue span:last-child {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  animation: nudge-down 2s ease-in-out infinite;
}

/* Homepage sections */
.story-section {
  background: var(--background);
}

.story-grid,
.split-heading,
.enquiry-layout,
.manifesto-grid,
.about-direction-grid,
.project-standard-grid {
  display: grid;
  gap: 2.5rem;
}

.story-copy {
  max-width: 670px;
  color: #48535d;
  font-size: clamp(1rem, 3vw, 1.18rem);
}

.story-copy p + p {
  margin-top: 1.15rem;
}

.story-copy .text-link {
  margin-top: 1.8rem;
}

.directions-section {
  color: var(--white);
  background: var(--primary);
}

.directions-section .eyebrow {
  color: #dfa8bd;
}

.directions-section .display-heading em {
  color: #dfa8bd;
}

.split-heading > p {
  max-width: 540px;
  align-self: end;
  color: var(--muted);
}

.directions-section .split-heading > p {
  color: rgba(255, 255, 255, 0.62);
}

.direction-list {
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.direction-row {
  display: grid;
  gap: 1rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 240ms ease, padding 240ms ease;
}

.direction-number,
.direction-category {
  color: #d6a1b6;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.direction-row h3 {
  margin-top: 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 6vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
}

.direction-row > p:nth-child(3) {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}

.direction-row > a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.direction-row > a:hover {
  color: var(--primary);
  background: var(--white);
  transform: rotate(45deg);
}

.portfolio-feature {
  background: var(--surface-muted);
}

.portfolio-grid {
  display: grid;
  gap: 2.5rem;
}

.portfolio-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portfolio-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.portfolio-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 65%, rgba(9, 17, 27, 0.5));
}

.portfolio-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-copy {
  align-self: center;
}

.portfolio-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 1.5rem;
  color: #52606b;
}

.portfolio-status {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 2rem 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.portfolio-status > span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(163, 59, 98, 0.13);
}

.portfolio-status strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.portfolio-status p {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.78rem;
}

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

.belief-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.belief-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: transparent;
  transition: color 250ms ease, background 250ms ease, transform 250ms ease;
}

.belief-card:hover {
  color: var(--white);
  background: var(--primary);
  transform: translateY(-6px);
}

.belief-card > span {
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.belief-card h3 {
  margin: auto 0 0.8rem;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.15;
}

.belief-card p {
  color: var(--muted);
  font-size: 0.85rem;
}

.belief-card:hover p {
  color: rgba(255, 255, 255, 0.66);
}

.nature-story {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.nature-story > img,
.nature-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nature-overlay {
  background: linear-gradient(180deg, rgba(9, 17, 27, 0.05), rgba(9, 17, 27, 0.82));
}

.nature-copy {
  position: relative;
  z-index: 1;
  padding-block: 5rem;
}

.nature-copy .eyebrow {
  color: #ead1db;
}

.nature-copy h2 {
  max-width: 970px;
  margin: 1.2rem 0 2rem;
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.enquiry-section {
  background: var(--surface-muted);
}

.enquiry-intro > p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 1.5rem;
  color: var(--muted);
}

.direct-contact {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.direct-contact a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--display);
  font-size: 1.2rem;
}

.contact-link-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(163, 59, 98, 0.34);
  border-radius: 50%;
}

.contact-link-icon .site-icon {
  width: 17px;
  height: 17px;
}

.contact-link-copy {
  min-width: 0;
  display: grid;
  color: var(--primary);
  overflow-wrap: anywhere;
}

.contact-link-copy small {
  margin-bottom: 0.1rem;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-card {
  padding: clamp(1.25rem, 3.5vw, 2.25rem);
  background: var(--surface);
  box-shadow: var(--shadow);
}

/* Forms */
.enquiry-form {
  position: relative;
}

.form-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.form-section-heading > span {
  color: var(--accent);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.form-section-heading strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
}

.form-section-heading p {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.67rem;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.form-grid {
  display: grid;
  gap: 0.9rem 1.4rem;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field label span {
  color: var(--accent);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0;
  border: 0;
  border-bottom: 1px solid #bac0c5;
  border-radius: 0;
  outline: none;
  background: transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field select {
  padding-right: 2rem;
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.phone-field:focus-within,
.input-icon-field:focus-within {
  border-color: var(--accent);
  box-shadow: 0 1px 0 var(--accent);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #9e2338;
}

.phone-field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid #bac0c5;
}

.phone-field > span {
  flex: 0 0 auto;
  color: var(--primary);
  font-weight: 600;
}

.phone-prefix {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.phone-prefix .site-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.phone-prefix b {
  font-size: 0.83rem;
}

.phone-field input {
  border: 0;
  box-shadow: none !important;
}

.input-icon-field {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid #bac0c5;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.input-icon-field .site-icon {
  width: 17px;
  height: 17px;
  color: var(--accent);
}

.input-icon-field input {
  border: 0;
  box-shadow: none !important;
}

.input-icon-field:has(input[aria-invalid="true"]) {
  border-color: #9e2338;
}

.field-hint,
.field-error {
  display: block;
  min-height: 1.1rem;
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.4;
}

.field-error {
  min-height: 0;
  color: #9e2338;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
  color: #5b6670;
  font-size: 0.73rem;
  line-height: 1.55;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--accent);
}

.consent a {
  color: var(--accent-deep);
  text-decoration: underline;
}

.consent-error {
  margin-left: 2rem;
}

.form-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.form-actions .button {
  width: 100%;
}

.form-note {
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.5;
}

.form-status {
  display: none;
  margin-top: 1.25rem;
  padding: 1rem;
  color: var(--primary);
  border-left: 3px solid var(--blue);
  background: #eef5f6;
  font-size: 0.83rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #772237;
  border-color: var(--accent);
  background: #faeef2;
}

.form-status strong {
  display: block;
  font-family: var(--display);
  font-size: 1.1rem;
}

.form-status span {
  display: block;
}

.enquiry-form.is-loading::after {
  position: absolute;
  inset: -0.5rem;
  content: "";
  background: rgba(255, 253, 248, 0.65);
  cursor: wait;
}

/* Inner hero and About */
.inner-hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--primary);
}

.inner-hero-media,
.inner-hero-media::after {
  position: absolute;
  inset: 0;
}

.inner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.inner-hero-media::after {
  content: "";
  background: linear-gradient(180deg, rgba(8, 17, 25, 0.34), rgba(8, 17, 25, 0.86)), linear-gradient(90deg, rgba(8, 17, 25, 0.62), transparent);
}

.inner-hero-copy {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-height) + 6rem) 0 5rem;
}

.inner-hero .eyebrow {
  margin-bottom: 1.25rem;
  color: #e3adc2;
}

.inner-hero h1 {
  max-width: 12ch;
}

.inner-hero-copy > p:last-child {
  max-width: 600px;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
}

.inner-hero-index {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.two-column-copy {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  color: var(--muted);
}

.about-direction {
  color: var(--white);
  background: var(--primary);
}

.about-direction .eyebrow {
  color: #dfa8bd;
}

.about-direction .display-heading em {
  color: #dfa8bd;
}

.about-principles {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-principles li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.about-principles li > span {
  color: #dfa8bd;
  font-size: 0.66rem;
}

.about-principles h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
}

.about-principles p {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}

.quote-section {
  padding-block: clamp(6rem, 13vw, 11rem);
  text-align: center;
  background: var(--surface);
}

.quote-mark {
  color: var(--accent);
  font-family: var(--display);
  font-size: 5rem;
  line-height: 0.7;
}

.quote-section blockquote {
  max-width: 1100px;
  margin: 1.5rem auto;
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 4.8rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.quote-credit {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.simple-cta {
  color: var(--white);
  background: var(--secondary);
  text-align: center;
}

.simple-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.simple-cta .eyebrow {
  color: #f0c7d6;
}

.simple-cta .display-heading {
  max-width: 14ch;
}

.simple-cta .display-heading em {
  color: #f0c7d6;
}

.simple-cta .button {
  margin-top: 2rem;
}

/* Projects */
.projects-hero,
.contact-hero {
  padding: calc(var(--header-height) + 5rem) 0 4rem;
  color: var(--white);
  background: var(--primary);
}

.projects-hero-grid,
.contact-hero-grid {
  display: grid;
  gap: 2.5rem;
}

.projects-hero .eyebrow,
.contact-hero .eyebrow {
  margin-bottom: 1.25rem;
  color: #dfa8bd;
}

.projects-hero h1,
.contact-hero h1 {
  max-width: 12ch;
}

.projects-hero h1 em,
.contact-hero h1 em {
  color: #dfa8bd;
}

.projects-hero-note,
.contact-direct {
  align-self: end;
  color: rgba(255, 255, 255, 0.66);
}

.projects-hero-note .text-link {
  margin-top: 1.5rem;
  color: var(--white);
}

.rera-trust-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.9rem;
  align-items: center;
  margin-top: 2.5rem;
  padding: 1rem 0;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  grid-column: 1 / -1;
}

.rera-trust-strip > span {
  color: #dfa8bd;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rera-trust-strip strong {
  font-family: var(--display);
  font-size: clamp(1.2rem, 5vw, 1.8rem);
  font-weight: 400;
}

.rera-trust-strip em {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.62rem;
  font-style: normal;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.projects-hero-line {
  width: var(--shell);
  height: 1px;
  margin: 4rem auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.projects-hero-line span {
  display: block;
  width: 35%;
  height: 100%;
  background: var(--accent);
}

.project-directory {
  background: var(--background);
}

.directory-head {
  display: grid;
  gap: 2rem;
}

.project-filters {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 0.25rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.project-filters button {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-filters button.active,
.project-filters button:hover {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.project-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.project-focus-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-focus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.project-focus-card[hidden] {
  display: none;
}

.project-focus-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--accent);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-focus-body {
  margin-top: auto;
  padding-top: 3rem;
}

.project-focus-body h3 {
  font-family: var(--display);
  font-size: clamp(1.65rem, 5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
}

.project-focus-body p {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.project-focus-status {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.5;
}

.project-focus-status > span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
}

.project-focus-status strong {
  color: var(--text);
}

.project-focus-card > a {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-standard {
  color: var(--white);
  background: var(--secondary);
}

.project-standard .eyebrow {
  color: #f0c7d6;
}

.project-standard .display-heading em {
  color: #f0c7d6;
}

.standard-list {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.standard-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.standard-list span {
  color: #f0c7d6;
  font-size: 0.65rem;
}

.standard-list p {
  color: rgba(255, 255, 255, 0.78);
}

.rera-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.rera-note > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  border-radius: 50%;
  background: var(--accent);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.rera-note p {
  color: var(--muted);
  font-size: 0.77rem;
}

.rera-note strong {
  display: block;
  color: var(--primary);
}

/* Contact */
.contact-direct > p {
  margin-bottom: 1.5rem;
}

.contact-direct a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: var(--display);
  font-size: 1.2rem;
}

.contact-direct a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-direct .contact-link-icon {
  color: #dfa8bd;
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-direct .contact-link-copy {
  color: var(--white);
}

.contact-direct .contact-link-copy small {
  color: #dfa8bd;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form-section {
  background: var(--surface-muted);
}

.contact-form-grid {
  display: grid;
  gap: 2rem;
}

.contact-aside h2 {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.contact-aside > p:not(.eyebrow) {
  margin-top: 1.5rem;
  color: var(--muted);
}

.contact-aside dl {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}

.contact-aside dl > div {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-aside dt {
  color: var(--accent);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-aside dd {
  font-size: 0.84rem;
}

.contact-actions {
  color: var(--white);
  background: var(--primary);
}

.contact-actions-grid {
  display: grid;
  gap: 1rem;
}

.contact-action {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 220ms ease, transform 220ms ease;
}

.contact-action:hover {
  background: var(--accent);
  transform: translateY(-4px);
}

.contact-action > span {
  color: #dfa8bd;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-action:hover > span {
  color: var(--white);
}

.contact-action h2 {
  margin-top: auto;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
}

.contact-action p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.contact-action p .site-icon {
  width: 16px;
  height: 16px;
  color: #dfa8bd;
}

/* Legal */
.legal-document {
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: var(--section-space);
}

.legal-header {
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.legal-header > p:last-child {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.legal-layout {
  display: grid;
  gap: 2.5rem;
  padding-top: 2.5rem;
}

.legal-layout aside {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  overflow-x: auto;
}

.legal-layout aside a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  font-size: 0.67rem;
}

.legal-copy {
  max-width: 790px;
}

.legal-copy section {
  padding: 0 0 2rem;
}

.legal-copy section + section {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.legal-copy h2 {
  margin-bottom: 0.9rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
}

.legal-copy p,
.legal-copy li {
  color: #56616b;
}

.legal-copy a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.legal-copy ul {
  padding-left: 1.2rem;
}

.legal-copy li {
  margin-top: 0.6rem;
  padding-left: 0.4rem;
}

.rera-registration {
  padding: clamp(1.5rem, 5vw, 3rem) !important;
  color: var(--white);
  background: var(--primary);
}

.rera-registration .eyebrow {
  color: #dfa8bd;
}

.rera-registration h2 {
  margin-top: 1.25rem;
  color: var(--white);
  font-size: clamp(1.55rem, 7vw, 4.5rem);
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

.rera-registration p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.rera-summary-grid {
  display: grid;
  gap: 1px;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.18);
}

.rera-summary-grid > div {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.055);
}

.rera-summary-grid dt {
  color: #dfa8bd;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rera-summary-grid dd {
  margin: 0.35rem 0 0;
  color: var(--white);
  overflow-wrap: anywhere;
}

.error-content {
  min-height: 76svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 5rem;
}

.error-content h1 {
  max-width: 11ch;
  margin: 1.25rem 0 2rem;
  color: var(--primary);
}

/* Footer */
.site-footer {
  padding: 4.5rem 1rem calc(6rem + env(safe-area-inset-bottom));
  color: var(--white);
  background: #0b1724;
}

.footer-lead {
  width: min(100%, 1320px);
  margin: 0 auto 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-lead .eyebrow {
  color: #dfa8bd;
}

.footer-lead > a {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-top: 1.25rem;
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 5.2rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.footer-lead > a span {
  flex: 0 0 auto;
  color: #dfa8bd;
  font-size: 1.5rem;
}

.footer-grid {
  width: min(100%, 1320px);
  display: grid;
  gap: 2.5rem;
  margin-inline: auto;
}

.footer-brand img {
  width: 175px;
  height: auto;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.footer-grid a:hover {
  color: #e4aec3;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: max-content;
  max-width: 100%;
}

.footer-contact-link .site-icon {
  width: 15px;
  height: 15px;
  color: #dfa8bd;
}

.footer-heading {
  margin-bottom: 0.55rem;
  color: #dfa8bd;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-base {
  width: min(100%, 1320px);
  display: grid;
  gap: 0.75rem;
  margin: 3.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.65rem;
}

.footer-base strong {
  color: rgba(255, 255, 255, 0.72);
}

.whatsapp-float {
  position: fixed;
  z-index: 390;
  right: 1rem;
  bottom: calc(76px + env(safe-area-inset-bottom));
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: #1f7458;
  box-shadow: 0 14px 38px rgba(10, 35, 27, 0.3);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  color: var(--white);
  background: #185f48;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(10, 35, 27, 0.38);
}

.whatsapp-float .site-icon {
  width: 22px;
  height: 22px;
}

.whatsapp-float > span {
  display: none;
}

.mobile-action-bar {
  position: fixed;
  z-index: 400;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 62px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: env(safe-area-inset-bottom);
  color: var(--white);
  background: rgba(11, 23, 36, 0.97);
  box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.mobile-action-bar a {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.mobile-action-bar .site-icon {
  width: 15px;
  height: 15px;
}

.mobile-action-bar a:last-child {
  border: 0;
  background: var(--accent);
}

/* Reveals */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .reveal-delay-1 {
  transition-delay: 100ms;
}

.js .reveal-delay-2 {
  transition-delay: 200ms;
}

.js .reveal-delay-3 {
  transition-delay: 300ms;
}

@keyframes hero-cinematic-cycle {
  0% { opacity: 0; transform: scale(1.075) translate3d(0.8%, 0, 0); }
  8% { opacity: 1; }
  31% { opacity: 1; }
  39% { opacity: 0; transform: scale(1.015) translate3d(-0.8%, 0, 0); }
  100% { opacity: 0; transform: scale(1.015) translate3d(-0.8%, 0, 0); }
}

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

@media (min-width: 600px) {
  :root {
    --shell: min(100% - 64px, 1320px);
  }

  .site-header {
    padding-inline: 2rem;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-actions .button {
    width: auto;
  }

  .direction-row {
    grid-template-columns: 48px minmax(180px, 1fr) minmax(220px, 1fr) 48px;
    align-items: center;
  }

  .belief-grid,
  .project-grid,
  .contact-actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .rera-trust-strip {
    grid-template-columns: auto auto 1fr;
    gap: 1.5rem;
  }

  .rera-trust-strip em {
    grid-column: auto;
    justify-self: end;
  }

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

  .field-wide {
    grid-column: 1 / -1;
  }

  .form-actions {
    grid-template-columns: minmax(190px, 0.75fr) 1fr;
    align-items: center;
  }

  .disclaimer-actions {
    grid-template-columns: minmax(240px, 1fr) minmax(160px, 0.55fr);
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-base {
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
  }

  .footer-base > *:nth-child(2) {
    text-align: center;
  }
}

@media (min-width: 768px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    padding-inline: 3rem;
  }

  .brand {
    width: 142px;
    height: 44px;
  }

  .header-enquire {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .site-header.is-scrolled .header-enquire,
  .inner-page .header-enquire,
  .legal-page .header-enquire,
  .error-page .header-enquire {
    color: var(--white);
    border-color: var(--accent);
    background: var(--accent);
  }

  .hero-grid {
    padding-bottom: 4.5rem;
  }

  .hero-copy {
    padding-right: 4rem;
  }

  .hero-meta {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .scroll-cue {
    bottom: 8rem;
  }

  .story-grid,
  .manifesto-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
    gap: 5rem;
  }

  .split-heading,
  .directory-head {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: 4rem;
  }

  .portfolio-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(3rem, 7vw, 7rem);
  }

  .portfolio-visual {
    min-height: 620px;
  }

  .portfolio-visual img {
    min-height: 620px;
  }

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

  .two-column-copy {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .projects-hero,
  .contact-hero {
    padding-top: calc(var(--header-height) + 7rem);
    padding-bottom: 5rem;
  }

  .projects-hero-grid,
  .contact-hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 5rem;
  }

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

  .contact-actions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .legal-layout {
    grid-template-columns: 210px minmax(0, 790px);
    gap: clamp(3rem, 8vw, 8rem);
  }

  .legal-layout aside {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    height: max-content;
    flex-direction: column;
    overflow: visible;
  }

  .legal-layout aside a {
    border-width: 0 0 1px;
    padding-inline: 0;
  }

  .footer-grid {
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 3rem;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (min-width: 900px) {
  .enquiry-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: start;
  }

  .about-direction-grid,
  .project-standard-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(3rem, 7vw, 6rem);
  }

  .contact-form-grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(3rem, 7vw, 7rem);
  }
}

@media (min-width: 1100px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(290px, 1fr) auto minmax(290px, 1fr);
    padding-inline: clamp(2.5rem, 4vw, 5rem);
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 2.8vw, 3rem);
    color: rgba(255, 255, 255, 0.8);
  }

  .desktop-nav a {
    position: relative;
    padding: 0.45rem 0;
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: "";
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
  }

  .desktop-nav a:hover::after,
  .desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .site-header.is-scrolled .desktop-nav,
  .inner-page .desktop-nav,
  .legal-page .desktop-nav,
  .error-page .desktop-nav {
    color: var(--primary);
  }

  .header-actions {
    justify-self: end;
    gap: clamp(1rem, 1.5vw, 1.6rem);
  }

  .header-call {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: color 180ms ease;
  }

  .header-call .site-icon {
    width: 15px;
    height: 15px;
  }

  .header-call span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--white);
  }

  .header-call small {
    color: currentColor;
    font-size: 0.52rem;
    font-weight: 600;
  }

  .site-header.is-scrolled .header-call,
  .inner-page .header-call,
  .legal-page .header-call,
  .error-page .header-call {
    color: var(--muted);
  }

  .site-header.is-scrolled .header-call span,
  .inner-page .header-call span,
  .legal-page .header-call span,
  .error-page .header-call span {
    color: var(--primary);
  }

  .inner-page .site-header:not(.is-scrolled) .desktop-nav,
  .inner-page .site-header:not(.is-scrolled) .header-call,
  .inner-page .site-header:not(.is-scrolled) .header-call span {
    color: rgba(255, 255, 255, 0.82);
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 100px;
  }

  .hero-copy h1 {
    font-size: clamp(5.6rem, 7.8vw, 8.8rem);
  }

  .hero-side-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    grid-column: 2;
    grid-row: 1;
    color: rgba(255, 255, 255, 0.63);
    font-size: 0.63rem;
    letter-spacing: 0.11em;
    line-height: 1.7;
    text-align: center;
    text-transform: uppercase;
    writing-mode: vertical-rl;
  }

  .hero-side-note .line {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.34);
  }

  .hero-meta {
    grid-column: 1 / -1;
  }

  .direction-row:hover {
    padding-inline: 1.25rem;
    background: rgba(255, 255, 255, 0.035);
  }

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

  .project-focus-card:nth-child(2),
  .project-focus-card:nth-child(4) {
    transform: translateY(3.5rem);
  }

  .project-focus-card:nth-child(2):hover,
  .project-focus-card:nth-child(4):hover {
    transform: translateY(calc(3.5rem - 5px));
  }

  .project-standard {
    margin-top: 3.5rem;
  }

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

  .whatsapp-float {
    right: 1.5rem;
    bottom: 1.5rem;
    width: auto;
    min-width: 164px;
    height: 54px;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0 1.1rem;
    border-radius: 2px;
  }

  .whatsapp-float > span {
    display: grid;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .whatsapp-float small {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.5rem;
    letter-spacing: 0.1em;
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}

@media (min-width: 1600px) {
  :root {
    --shell: min(100% - 120px, 1480px);
  }

  .site-header {
    padding-inline: 5vw;
  }

  .hero-copy {
    max-width: 930px;
  }

  .hero-copy h1 {
    font-size: 9rem;
  }

  .project-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .project-focus-card:nth-child(2),
  .project-focus-card:nth-child(4) {
    transform: translateY(2.5rem);
  }

  .project-focus-card:nth-child(2):hover,
  .project-focus-card:nth-child(4):hover {
    transform: translateY(calc(2.5rem - 5px));
  }
}

@media (min-width: 2200px) {
  :root {
    --shell: min(100% - 200px, 1760px);
    --section-space: 11rem;
  }

  body {
    font-size: 1.1rem;
  }

  .hero-copy h1 {
    font-size: 10.5rem;
  }
}

@media (max-width: 430px) {
  .hero-scene-villas {
    object-position: 58% center;
  }

  .hero-scene-nature {
    object-position: 52% center;
  }

  .hero-scene-city {
    object-position: 51% center;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero-intro {
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 1.5rem;
  }

  .hero-meta {
    margin-top: 1.5rem;
  }

  .scroll-cue {
    display: none;
  }

  .footer-lead > a span {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-scene {
    animation: none !important;
    opacity: 0;
    transform: none;
  }

  .hero-scene:first-child {
    opacity: 1;
  }
}

@media print {
  .site-header,
  .mobile-action-bar,
  .whatsapp-float,
  .site-footer,
  .disclaimer-shell,
  .mobile-menu {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .legal-document {
    width: 100%;
    padding: 0;
  }
}
