/* =============================================================
   TABLE OF CONTENTS
   01. RESET & BASE
   02. TYPOGRAPHY — headings, body, links
   03. IMAGES & INPUTS
   04. LAYOUT — section, container, grid utilities
   05. HEADER & NAV
   06. FOOTER
   07. MODAL
   08. GRAVITY FORMS
   09. MAPBOX & SITE MAP
   10. SWIPER — base + per-instance
   11. OVERLAYS & ANIMATIONS
   12. BUTTONS & LINKS
   13. COMPONENTS
       — Hero
       — Stats / Numbers
       — Blog cards & RB Section
       — RB Gallery (project page)
       — Related Posts Slider
       — Consultants
       — Teams
       — FAQ
       — Single Post
       — Join Team Card
       — Milestone Table
       — Enquire Section
       — CAB Steps
       — Parcels
       — Plan Row / Vision Row
       — Location
       — Partner Logo
       — Share / Copy
   14. UTILITIES (spacing, display, colour, misc)
   15. MEDIA QUERIES
   ============================================================= */

/* ─────────────────────────────────────────────────────────────
   01. RESET & BASE
   ───────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  position: relative;
  height: 100%;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter Tight", sans-serif;
  color: #010a11;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem !important;
}

/* ─────────────────────────────────────────────────────────────
   02. TYPOGRAPHY
   ───────────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: Hedvig Letters Serif;
  font-weight: 400 !important;
  line-height: 120%;
  letter-spacing: 1px;
  text-transform: capitalize !important;
}

h1 {
  font-size: 64px !important;
}

h2 {
  font-size: 34px !important;
}

h3 {
  font-size: 32px !important;
}

h4 {
  font-size: 22px !important;
}

h5 {
  font-size: 20px !important;
  margin-bottom: 1rem !important;
}

p {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
}

p:not(:last-child) {
  margin-bottom: 10px;
}

span {
  font-weight: 600;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: inherit;
}

.logo-font h1,
.logo-font h2,
.logo-font .hero-desc {
  font-family: Hedvig Letters Serif !important;
  text-transform: capitalize !important;
}

.logo-font h1,
.logo-font h2 {
  font-size: 72px !important;
}

.logo-font .hero-desc {
  font-size: 22px;
}

.font-hedvig {
  font-family: Hedvig Letters Serif;
  text-transform: capitalize !important;
  font-weight: 400 !important;
  font-size: clamp(28px, 4vw, 44px) !important;
}

.font-inter {
  font-family: Inter Tight;
  font-weight: 400;
  line-height: 26px;
  font-size: 18px;
}

.font-light {
  font-weight: 300;
}

.leading-snug {
  line-height: 1.08;
}

.leading-card {
  line-height: 1;
}

.leading-body {
  line-height: 1.8;
}

.leading-loose {
  line-height: 1.85;
}

.leading-relaxed {
  line-height: 1.6;
}

.text-hero {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 300;
}

.text-pillar {
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 300;
}

.text-strip {
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 400;
}

.text-card-title {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
}

.text-stat-num {
  font-size: clamp(40px, 5vw, 52px);
  font-weight: 300;
  line-height: 1;
}

.text-stat-sup {
  font-size: 20px;
}

.section__desc {
  font-size: 20px;
  line-height: 2.4rem;
}

/* Post/Gutenberg content */
.post-content {
  margin: 2rem auto;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5 {
  margin: 1rem 0 !important;
}

.post-content h1 {
  font-size: 48px !important;
}

.post-content h2 {
  font-size: 36px !important;
}

.post-content h3 {
  font-size: 32px !important;
}

.post-content h4 {
  font-size: 28px !important;
}

.post-content h5 {
  font-size: 24px !important;
}

.post-content p {
  font-size: 20px;
  margin: 1rem 0;
}

.post-content img {
  margin: 2rem 0;
}

.post-content a {
  color: #000;
  font-weight: bold;
}

.post-content a:hover {
  text-decoration: underline;
  cursor: pointer;
}

.post-content li {
  list-style: disc;
  margin-left: 1rem;
}

.gutenburg .wp-block-separator {
  margin: 1.5rem 0;
}

.gutenburg p {
  margin-bottom: 1rem !important;
}

.gutenburg .wp-element-button {
  background-color: #3c3c3c;
  border-radius: 0;
  font-size: 18px;
}

.gutenburg .wp-element-button:hover {
  background-color: black;
  color: white;
}

.gutenburg ul {
  list-style: disc !important;
}

.gutenburg ul li {
  margin-left: 1rem;
  margin-bottom: 0.5rem;
}

.category-project-font {
  font-size: clamp(24px, 3vw, 38px) !important;
}

/* ─────────────────────────────────────────────────────────────
   03. IMAGES & INPUTS
   ───────────────────────────────────────────────────────────── */
img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
}

.img-contain img {
  object-fit: contain !important;
}

.object-contain {
  object-fit: contain;
}

.object-top {
  object-position: top;
  -o-object-position: top;
}

input {
  all: unset;
  height: 3.5rem;
  background-color: #ffffff;
}

select {
  border: 1px solid #010a11;
  border-radius: 3px;
}

button {
  text-decoration: none;
  border: none;
  cursor: pointer;
}

button:focus {
  outline: none;
}

/* ─────────────────────────────────────────────────────────────
   04. LAYOUT — section, container, grid
   ───────────────────────────────────────────────────────────── */
.section {
  height: auto;
  overflow: hidden;
  padding: 4rem 1.5rem;
  position: relative;
}

section.section.section-bottoms {
  padding: 3rem 1.5rem 0;
}

section.section.section-space {
  padding: 3rem 1.5rem;
}

.top-section {
  padding-top: 140px !important;
}

.section-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.container {
  max-width: 1400px !important;
  margin: 0 auto;
}

.cp-img-col {
  overflow: hidden;
}

.grid-cols-\[1\.5fr_1fr\] {
  grid-template-columns: 1.5fr 1fr;
}

.grid-cols-\[1fr_1\.5fr\] {
  grid-template-columns: 1fr 1.5fr;
}

.grid-cols-\[2fr_1fr\] {
  grid-template-columns: 2fr 1fr;
}

.grid-cols-\[1fr_2fr\] {
  grid-template-columns: 1fr 2fr;
}

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

.col-span-1 {
  grid-column: span 1 / span 1;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.page-header-section {
  padding: 0 1rem;
  height: 650px;
}

/* Section diagram background grid */
.section-diagram-bg {
  position: relative;
  overflow: hidden;
}

.section-diagram-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(14, 22, 33, .04) 59px, rgba(14, 22, 33, .04) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(14, 22, 33, .04) 59px, rgba(14, 22, 33, .04) 60px);
  pointer-events: none;
  z-index: 0;
}

.section-diagram-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 119px, rgba(185, 155, 100, .06) 119px, rgba(185, 155, 100, .06) 120px);
  pointer-events: none;
  z-index: 0;
}

.section-diagram-bg>* {
  position: relative;
  z-index: 1;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 2rem;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .15);
}

/* ─────────────────────────────────────────────────────────────
   05. HEADER & NAV
   ───────────────────────────────────────────────────────────── */
.header-wrap {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
}

.header {
  display: flex;
  height: 120px;
  color: #ffffff;
  align-items: center;
  font-weight: 500;
  transition: height .5s ease, background .5s ease;
}

.scroll-header {
  background: #000;
  box-shadow: 5px 0 50px rgba(65, 37, 11, .145);
}

.scroll-header .header {
  height: 80px;
}

.nav-logo {
  max-width: 200px;
  display: inline-block;
  flex-shrink: 0;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scroll-header .nav-logo {
  max-width: 150px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  padding: 0 10px;
  width: 100%;
  margin: auto;
  font-weight: 500;
}

.nav__close {
  display: none;
  color: #ffffff;
}

.show-icon {
  display: block !important;
}

.hide-icon {
  display: none !important;
}

.nav__icons {
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 30;
}

.menu-open {
  overflow: hidden !important;
}

/* Full-screen overlay */
.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  color: #fff;
  font-size: 26px;
  visibility: hidden;
  pointer-events: none;
  z-index: 19;
  background-color: rgba(14, 22, 33, .5);
}

.show-menu {
  visibility: visible !important;
  pointer-events: all;
}

.show-menu #nav-container {
  transform: translateX(0);
}

/* Slide-in panel */
#nav-container {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 26vw;
  min-width: 280px;
  max-width: 420px;
  height: 100vh;
  padding: 2rem 2% 2rem 2rem;
  background-color: #000;
  transform: translateX(100%);
  transition: transform .3s ease-in-out;
  overflow-y: auto;
  overflow-x: hidden;
}

div#nav-close {
  position: absolute;
  right: 40px;
  top: 40px;
}

.nav-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  height: 100vh;
  justify-content: center;
  margin-top: 80px;
}

.site-logo {
  display: block;
  width: 180px;
  max-width: 100%;
  margin-bottom: 2.5rem;
  flex-shrink: 0;
  position: absolute;
  top: 40px;
}

.site-logo img {
  width: 100%;
  height: auto !important;
  object-fit: contain;
  display: block;
}

.nav-menu #menu-primary {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.nav-menu #menu-primary>li {
  padding: 4px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  text-transform: capitalize;
}

.menu-item-inner {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu #menu-primary li a {
  position: relative;
  display: block;
  padding: 4px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .3s;
}

.nav-menu #menu-primary li a:hover {
  transform: translateX(10px);
}

.nav-menu #menu-primary li .sub-menu li {
  display: block;
  padding-left: 30px;
}

.nav-menu.show-menu .container .menu {
  max-height: 80vh;
  margin-right: -30%;
  margin-left: 8%;
}

/* Sub-menu */
.submenu-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: transform .3s;
}

.submenu-toggle img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  transition: transform .3s;
}

.sub-menu-bg {
  width: 100%;
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}

.sub-menu-on .sub-menu-bg {
  max-height: 600px;
}

.sub-menu-wrap {
  padding: .5rem 0 .5rem 1rem;
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.sub-menu li {
  display: block;
  padding: 0;
  text-transform: capitalize;
}

.sub-menu .menu-item-inner {
  display: flex;
  align-items: center;
}

.sub-menu a {
  font-size: 15px;
  font-weight: 400;
  padding: 4px 0;
  display: block;
  transition: transform .3s;
}

.sub-menu a:hover {
  transform: translateX(8px);
}

.sub-menu a::before {
  content: "—";
  margin-right: 8px;
  color: rgba(255, 255, 255, .4);
  font-size: 12px;
}

li:has(> div.sub-menu-on) {
  z-index: 50;
}

.sub-menu-on {
  visibility: visible;
}

/* Nav entry animations */
.show-menu #menu-primary>li {
  opacity: 0;
  animation: navFadeIn .5s ease both;
}

.show-menu #menu-primary>li:nth-child(1) {
  animation-delay: .00s;
}

.show-menu #menu-primary>li:nth-child(2) {
  animation-delay: .06s;
}

.show-menu #menu-primary>li:nth-child(3) {
  animation-delay: .12s;
}

.show-menu #menu-primary>li:nth-child(4) {
  animation-delay: .18s;
}

.show-menu #menu-primary>li:nth-child(5) {
  animation-delay: .24s;
}

.show-menu #menu-primary>li:nth-child(6) {
  animation-delay: .30s;
}

.show-menu #menu-primary>li:nth-child(7) {
  animation-delay: .36s;
}

.show-menu #menu-primary>li:nth-child(8) {
  animation-delay: .42s;
}

@keyframes navFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.nav-sticker {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  width: 300px;
  height: 300px;
  color: white;
  opacity: 0;
  transition: opacity 3s, box-shadow .5s;
  pointer-events: none;
}

.nav-sticker img {
  object-fit: contain;
}

.nav-sticker:hover {
  box-shadow: 0 0 30px #fff;
}

.show-menu .nav-sticker {
  opacity: 1;
  pointer-events: all;
}

/* ─────────────────────────────────────────────────────────────
   06. FOOTER
   ───────────────────────────────────────────────────────────── */
.site-footer {
  background-color: #0a0a0a;
  color: #fff;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, .7) 60%, rgba(10, 10, 10, 1) 100%);
  pointer-events: none;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 70px 40px;
  align-items: start;
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-wrap img {
  width: 100%;
  height: 160px !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1);
}

.footer-nav-col {
  border-left: 1px solid rgba(255, 255, 255, .15);
  padding-left: 40px;
}

.footer-nav-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .5);
  text-transform: capitalize;
  margin: 0 0 24px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav-list li a {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .01em;
  transition: opacity .2s;
  display: inline-block;
}

.footer-nav-list li a:hover {
  opacity: .5;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, .15);
  margin: 0 40px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
}

.footer-copyright p {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  margin: 0;
  font-weight: 300;
  letter-spacing: .02em;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-social-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: capitalize;
  color: #fff;
  transition: opacity .2s;
}

.footer-social-link:hover {
  opacity: .5;
}

/* ─────────────────────────────────────────────────────────────
   07. MODAL
   ───────────────────────────────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index: 999;
  align-items: center;
}

.modal-content,
.modal-content-dark {
  margin: 2rem auto;
  width: 80%;
  max-width: 1200px;
  height: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
  overflow: auto;
}

.modal-content {
  background-color: #fff;
  border: 1px solid #888;
}

.modal-content-dark {
  background-color: #000;
}

.modal-close {
  cursor: pointer;
  filter: invert(1);
}

body.modal-open {
  overflow: hidden;
}

/* Join-team modal */


/* ─────────────────────────────────────────────────────────────
   08. GRAVITY FORMS
   ───────────────────────────────────────────────────────────── */
.gform_wrapper .gform_title {
  text-align: center !important;
  margin-bottom: 1rem;
  font-size: 40px !important;
}

.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder {
  color: #fff;
}

.gform_wrapper.gravity-theme input[type=text],
.gform_wrapper.gravity-theme input[type=email],
.gform_wrapper.gravity-theme input[type=tel],
.gform_wrapper.gravity-theme input[type=file],
.gform_wrapper.gravity-theme input[type=number],
.gform_wrapper.gravity-theme textarea,
.gform_wrapper.gravity-theme select {
  background: none;
  border: 1px solid #fff;
  height: 50px;
  font-weight: 300;
  border-radius: 0;
}

/* Forms 4, 5, 8, 9 — dark border override */
#gform_wrapper_4 input[type=text],
#gform_wrapper_4 input[type=email],
#gform_wrapper_4 input[type=tel],
#gform_wrapper_4 input[type=file],
#gform_wrapper_4 input[type=number],
#gform_wrapper_4 textarea,
#gform_wrapper_4 select,
#gform_wrapper_5 input[type=text],
#gform_wrapper_5 input[type=email],
#gform_wrapper_5 input[type=tel],
#gform_wrapper_5 input[type=file],
#gform_wrapper_5 input[type=number],
#gform_wrapper_5 textarea,
#gform_wrapper_5 select,
#gform_wrapper_8 input[type=text],
#gform_wrapper_8 input[type=email],
#gform_wrapper_8 input[type=tel],
#gform_wrapper_8 input[type=file],
#gform_wrapper_8 input[type=number],
#gform_wrapper_8 textarea,
#gform_wrapper_8 select,
#gform_wrapper_9 input[type=text],
#gform_wrapper_9 input[type=email],
#gform_wrapper_9 input[type=tel],
#gform_wrapper_9 input[type=file],
#gform_wrapper_9 input[type=number],
#gform_wrapper_9 textarea,
#gform_wrapper_9 select {
  border: 1px solid #000;
}

/* Submit buttons */
#gform_wrapper_4 input[type=submit],
#gform_wrapper_5 input[type=submit],
#gform_wrapper_7 input[type=submit],
#gform_wrapper_8 input[type=submit],
#gform_wrapper_9 input[type=submit] {
  background: #000;
  border: 1px solid #000;
  padding: .5rem 3rem;
}

#gform_wrapper_4 input[type=submit]:hover,
#gform_wrapper_5 input[type=submit]:hover,
#gform_wrapper_8 input[type=submit]:hover,
#gform_wrapper_9 input[type=submit]:hover {
  background-color: #000;
}

/* Footers */
#gform_wrapper_4 .gform_footer,
#gform_wrapper_5 .gform_footer,
#gform_wrapper_8 .gform_footer,
#gform_wrapper_9 .gform_footer {
  margin-top: 2rem;
}

/* Placeholders */
#gform_wrapper_4 ::placeholder,
#gform_wrapper_5 ::placeholder,
#gform_wrapper_7 ::placeholder,
#gform_wrapper_8 ::placeholder,
#gform_wrapper_9 ::placeholder {
  color: #8e8e8e;
}

/* Validation */
#gform_wrapper_4 .gform_validation_errors h2,
#gform_wrapper_5 .gform_validation_errors h2,
#gform_wrapper_8 .gform_validation_errors h2,
#gform_wrapper_9 .gform_validation_errors h2 {
  color: #c02b0a !important;
}

/* Form 2 — newsletter inline row */
#gform_wrapper_2,
#gform_wrapper_2 .gform_body,
#gform_wrapper_2 .gform_fields,
#gform_wrapper_2 .gfield,
#gform_wrapper_2 .ginput_container {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  width: 450px;
}

#gform_2 {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  width: 100% !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

#gform_2 .gform_body {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: auto !important;
}

#gform_2 .ginput_container input {
  width: 100% !important;
  max-width: 100%;
  box-sizing: border-box;
}

#gform_2 .gform_footer {
  margin: 0 !important;
}

#gform_fields_2 {
  display: flex !important;
  flex-direction: row !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

#field_2_1 {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

#field_2_1 .ginput_container,
#field_2_1 .ginput_container_email {
  height: 52px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  width: 100% !important;
}

#input_2_1 {
  flex: 1 !important;
  width: 100% !important;
  height: 52px !important;
  background: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 16px !important;
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  color: #000 !important;
  outline: none !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

#input_2_1::placeholder {
  color: rgba(0, 0, 0, .45) !important;
  font-weight: 300 !important;
}

#gform_submit_button_2 {
  flex: 1 !important;
  width: 100% !important;
  height: 52px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .5) !important;
  border-radius: 0 !important;
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: background .3s, border-color .3s !important;
  -webkit-appearance: none !important;
}

#gform_submit_button_2:hover {
  background: rgba(255, 255, 255, .08) !important;
  border-color: rgba(255, 255, 255, .8) !important;
}

/* Hide non-visible fields */
#field_2_2,
#field_2_3,
#field_2_4,
#gform_fields_2 .gfield--type-captcha,
#gform_fields_2 .gfield--type-honeypot,
#gform_fields_2 .gfield--type-hidden,
#gform_wrapper_2 .gfield_label,
#gform_wrapper_2 .gform_required_legend,
#gform_wrapper_2 .gform_heading,
#gform_wrapper_2 .gform_validation_errors,
#gform_wrapper_2 .gfield_validation_message,
#gform_wrapper_2 .gform_ajax_spinner {
  display: none !important;
}

#gform_wrapper_2 .gform_confirmation_message {
  font-size: 14px !important;
  font-weight: 300 !important;
  color: rgb(185, 155, 100) !important;
  letter-spacing: .06em !important;
  text-align: center !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Form 7 */
.gform_wrapper.gravity-theme #gform_fields_7 input[type=text],
.gform_wrapper.gravity-theme #gform_fields_7 input[type=email],
.gform_wrapper.gravity-theme #gform_fields_7 input[type=tel],
.gform_wrapper.gravity-theme #gform_fields_7 input[type=file],
.gform_wrapper.gravity-theme #gform_fields_7 input[type=number],
.gform_wrapper.gravity-theme #gform_fields_7 textarea,
.gform_wrapper.gravity-theme #gform_fields_7 select {
  background: none;
  border: 1px solid #000;
  height: 50px;
  font-weight: 300;
  border-radius: 0;
}

/* Contact form */
.contact-form-wrap .gform_wrapper {
  background: #fff;
  padding: 2.5rem;
}

.contact-form-wrap .gform_wrapper input[type=text],
.contact-form-wrap .gform_wrapper input[type=email],
.contact-form-wrap .gform_wrapper input[type=tel],
.contact-form-wrap .gform_wrapper textarea,
.contact-form-wrap .gform_wrapper select {
  border: none;
  border-bottom: 1px solid #BEBEBE;
  border-radius: 0;
  background: transparent;
  padding: .75rem 0;
  font-size: 14px;
  font-weight: 300;
  color: #0e162199;
  transition: border-color .3s;
  height: auto;
}

.contact-form-wrap .gform_wrapper input[type=text]:focus,
.contact-form-wrap .gform_wrapper input[type=email]:focus,
.contact-form-wrap .gform_wrapper input[type=tel]:focus,
.contact-form-wrap .gform_wrapper textarea:focus {
  border-bottom-color: rgb(185, 155, 100);
  outline: none;
}

.contact-form-wrap .gform_wrapper input::placeholder,
.contact-form-wrap .gform_wrapper textarea::placeholder {
  color: #8a8f96;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: .05em;
}

.contact-form-wrap .gform_wrapper textarea {
  min-height: 100px;
  resize: none;
}

.contact-form-wrap .gform_wrapper input[type=submit] {
  background: none;
  border: 1.5px solid #000;
  color: #000;
  /* font-size: 11px; */
  /* font-weight: 500; */
  /* letter-spacing: .18em; */
  text-transform: capitalize;
  padding: 14px 28px;
  cursor: pointer;
  transition: background .3s, color .3s;
  height: auto;
  margin-top: 1rem;
}

.contact-form-wrap .gform_wrapper input[type=submit]:hover {
  background: #000;
  color: #fff;
}

.contact-form-wrap .gform_wrapper .gfield_label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: capitalize;
  color: #8a8f96;
  margin-bottom: 0;
}

.contact-form-wrap .gform_wrapper .gform_fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2rem;
}

.contact-form-wrap .gform_wrapper .gfield--width-full {
  grid-column: span 2 / span 2;
}

/* Shared GF overrides */
.gfield_radio {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.gchoice {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.gfield-choice-input[type="radio"] {
  all: revert;
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #333;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color .2s;
  background: transparent;
  margin: 0;
}

.gfield-choice-input[type="radio"]:checked {
  border-color: #000;
  background: transparent;
}

.gfield-choice-input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #000;
}

.gchoice .gform-field-label--type-inline {
  font-size: 18px !important;
  font-weight: 400;
  color: #010a11;
  cursor: pointer;
  margin: 0;
  letter-spacing: .01em;
}

.gfield_label {
  font-size: 18px;
  font-weight: 600 !important;
  color: #010a11;
  margin-bottom: 1rem !important;
  letter-spacing: 0;
  font-family: "Inter Tight", sans-serif !important;
}

.gform_wrapper.gravity-theme input[type=file] {
  padding-top: 6px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_fileupload input {
  color: red;
  font-size: 13px;
  padding: 8px;
}

.gform_fileupload_rules {
  display: none !important;
}

/* .gform_wrapper.gravity-theme input[type=submit] {
  background: none;
  border: 1px solid #fff;
  padding: .5rem 3rem;
} */

.gform_wrapper.gravity-theme input[type=submit]:hover {
  background-color: #000;
}

.gform_wrapper.gravity-theme .gform_footer,
.gform_wrapper.gravity-theme .gform_page_footer {
  padding: 0 !important;
}

.gform_wrapper.gravity-theme .gfield_label {
  margin-bottom: 0 !important;
}

.ui-datepicker-trigger {
  width: 20px;
}

.gform_wrapper .gform_ajax_spinner {
  width: 50px !important;
  height: 50px !important;
}

.gform_confirmation_message {
  text-align: center;
}

.gform_required_legend {
  display: none;
}

.gform_wrapper .gfield_validation_message,
.gform_wrapper .validation_message {
  background: transparent !important;
  color: #3c3c3c !important;
  font-size: 14px !important;
  border: none !important;
  padding: 0 !important;
}

/* .gform_validation_errors {
  background-color: transparent !important;
} */

.gform_validation_errors h2 {
  font-size: 14px !important;
  /* color: white !important; */
  font-weight: 400 !important;
}

.gform_heading {
  display: none;
}

/* Newsletter section */
#newsletter {
  background: transparent;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

#newsletter .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 0;
}

#newsletter .flex {
  width: 100%;
  max-width: 520px;
}

/* ─────────────────────────────────────────────────────────────
   09. MAPBOX & SITE MAP
   ───────────────────────────────────────────────────────────── */
.map-container {
  max-width: 800px;
  margin: 0 auto;
}

.map-container img {
  width: 100%;
  height: 650px !important;
  object-fit: cover;
}

.site-map-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* SVG map interaction classes */
.map-container .cls-3,
.map-container .cls-12,
.map-container .cls-13,
.map-container .cls-14,
.map-container .cls-44,
.map-container .cls-45,
.map-container path,
.map-container rect,
.map-container polygon,
.map-container polyline {
  stroke: #989c97;
}

.map-container #Grass-2 {
  fill: #7dab3a;
  opacity: .5;
}

.map-container .cls-6,
.map-container .cls-7,
.map-container .st13,
.map-container .st17,
.map-container .cls-64,
.map-container .cls-65 {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.6;
}

/* .map-container .map-hover .cls-12,
.map-container .map-hover .st27,
.map-container .map-hover .cls-9 {
  fill: #000;
  opacity: .5;
}

.map-container .map-hover .cls-44,
.map-container .map-hover .cls-13,
.map-container .map-hover .st23,
.map-container .map-hover .st13,
.map-container .map-hover .st17,
.map-container .map-hover .st18,
.map-container .map-hover .cls-39 {
  fill: #000;
} */

/* .map-container .map-hover text {
  fill: white;
} */

/* .map-container .sold .cls-12,
.map-container .sold .st27,
.map-container .sold .cls-9 {
  fill: #c3c5c3;
} */

/* .map-container .sold .cls-44,
.map-container .sold .cls-13,
.map-container .sold .st23,
.map-container .sold .st13,
.map-container .sold .st17,
.map-container .sold .st18,
.map-container .sold .cls-39 {
  fill: #d7d7d7;
} */

/* .map-container .sold text {
  fill: #ababab;
}

.map-container .hold .cls-12,
.map-container .hold .st27,
.map-container .hold .cls-9 {
  fill: #c3c5c3;
}

.map-container .hold .cls-44,
.map-container .hold .cls-13,
.map-container .hold .st23,
.map-container .hold .st13,
.map-container .hold .st17,
.map-container .hold .st18,
.map-container .hold .cls-39 {
  fill: #d6c494;
}

.map-container .hold text {
  fill: #fff;
} */

.sold-color {
  background-color: #094130;
}

.selling-color {
  background-color: #b8c2ba;
}

/* Mapbox popup */
#infoBox {
  background-color: rgba(14, 22, 33, .8);
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  transition: opacity .3s;
}

#infoBox #unit {
  font-weight: 600;
}

#infoBox span {
  font-weight: 400;
}

#infoBox.sold {
  background-color: rgba(143, 0, 0, .8);
}

#infoBox.hold {
  background-color: rgba(143, 103, 0, .8);
}

#map {
  width: 100%;
  height: 750px;
}

.marker {
  background-size: cover;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
}

.mapboxgl-popup {
  max-width: 200px;
}

.mapboxgl-popup-close-button {
  font-size: 20px;
}

.mapboxgl-popup-content {
  text-align: center;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, .1);
  padding: 1rem;
  opacity: .9;
}

.mapboxgl-popup-content a:hover {
  color: #537cb7 !important;
}

.mapboxgl-popup-tip {
  opacity: .9;
}

/* ─────────────────────────────────────────────────────────────
   10. SWIPER — base + per-instance
   ───────────────────────────────────────────────────────────── */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination {
  position: relative !important;
  width: auto !important;
}

.swiper-pagination-bullet-active {
  background: #000 !important;
}

/* Sale prev/next (detail gallery, sale swiper) */
.sale-prev,
.sale-next {
  transition: all .3s ease;
}

.sale-prev:hover,
.sale-next:hover {
  transform: translateY(-50%) scale(1.1);
}

.detailGallerySwiper .sale-prev,
.detailGallerySwiper .sale-next {
  opacity: 1;
  width: 80px;
  height: 80px;
}

.detailGallerySwiper .sale-prev img,
.detailGallerySwiper .sale-next img {
  filter: invert(1) grayscale(100%) contrast(100%) brightness(100%);
}

/* Hero swiper */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: white;
  opacity: .7;
  transition: opacity .3s;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  opacity: 1;
}

.hero-swiper .swiper-pagination {
  bottom: 20px !important;
}

.hero-swiper .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, .5);
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  transition: all .3s;
}

.hero-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: white !important;
  transform: scale(1.2);
}

/* Completed projects swiper */
.completedProjectSwiper .swiper-slide {
  background-color: #f2f2f2;
}

.completedProjectSwiper .swiper-slide .slide-overlay {
  opacity: 0;
  transition: .3s;
}

.completedProjectSwiper .swiper-slide:hover .slide-overlay {
  opacity: 1;
}

.saleSwiper .swiper-slide {
  padding-bottom: 220px;
}

/* Blog-page hero slider */
.swiper.blog-slider .swiper-pagination {
  bottom: 32px;
}

.swiper.blog-slider .sale-prev,
.swiper.blog-slider .sale-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, .6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s;
}

.swiper.blog-slider .sale-prev:hover,
.swiper.blog-slider .sale-next:hover {
  background: rgba(0, 0, 0, .9);
}

.swiper.blog-slider .sale-prev svg,
.swiper.blog-slider .sale-next svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.swiper.blog-slider .swiper-slide img {
  opacity: 0;
  transition: opacity .3s ease;
}

.swiper.blog-slider .swiper-slide-visible img,
.swiper.blog-slider .swiper-slide-active img {
  opacity: 1;
}

/* Project slider */
.project-slider-pagination span.swiper-pagination-bullet {
  background-color: white;
}

.project-slider .swiper-slide img {
  transition: transform .6s ease;
}

.project-slider .swiper-slide:hover img {
  transform: scale(1.08);
}

.project-slider .overlay-custom {
  background: rgba(0, 0, 0, 0);
  transition: background .4s;
}

.project-slider .swiper-slide:hover .overlay-custom {
  background: rgba(0, 0, 0, .4);
  border-radius: 25px !important;
}

.project-slider .swiper-slide a {
  border-radius: 25px !important;
}

.project-slider h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 42%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .3s;
}

.project-slider .swiper-slide:hover h2::after {
  width: 30%;
}

.project-slider-prev,
.project-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, .6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
  transition: background .3s, transform .3s;
}

.project-slider-prev {
  left: 16px;
}

.project-slider-next {
  right: 16px;
}

.project-slider-prev:hover,
.project-slider-next:hover {
  background: rgba(0, 0, 0, .9);
  transform: translateY(-50%) scale(1.08);
}

.project-slider-prev svg,
.project-slider-next svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Blog card gallery slider */
.blog-card-swiper-wrap {
  position: relative;
}

.blog-card-prev,
.blog-card-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, .6);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, background .3s;
}

.blog-card-swiper-wrap:hover .blog-card-prev,
.blog-card-swiper-wrap:hover .blog-card-next {
  opacity: 1;
  pointer-events: auto;
}

.blog-card-prev {
  left: 10px;
}

.blog-card-next {
  right: 10px;
}

.blog-card-prev:hover,
.blog-card-next:hover {
  background: rgba(0, 0, 0, .9);
}

.blog-card-prev svg,
.blog-card-next svg {
  width: 16px;
  height: 16px;
}

/* Home blog swiper */
.home-blog-swiper-wrap {
  position: relative;
  overflow: hidden;
}

.home-blog-swiper {
  overflow: hidden;
}

.home-blog-prev,
.home-blog-next {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: #000;
  border: 1.5px solid rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, background .3s;
}

.home-blog-swiper-wrap:hover .home-blog-prev,
.home-blog-swiper-wrap:hover .home-blog-next {
  opacity: 1;
  pointer-events: auto;
}

.home-blog-prev {
  left: 0;
}

.home-blog-next {
  right: 0;
}

.home-blog-prev:hover,
.home-blog-next:hover {
  background: rgb(185, 155, 100);
  border-color: rgb(185, 155, 100);
}

.home-blog-prev svg,
.home-blog-next svg {
  width: 20px;
  height: 20px;
}

/* Related posts slider */
.related-posts-slider {
  position: relative;
}

.related-prev,
.related-next {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: #000;
  border: 1px solid #BEBEBE;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  transition: background .3s, border-color .3s;
}

.related-prev {
  left: 10px;
}

.related-next {
  right: 10px;
}

.related-prev:hover,
.related-next:hover {
  background: rgb(185, 155, 100);
  border-color: rgb(185, 155, 100);
}

.related-prev svg,
.related-next svg {
  width: 20px;
  height: 20px;
}

.related-prev.swiper-button-disabled,
.related-next.swiper-button-disabled {
  opacity: .3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Teams swiper */
.teams-swiper {
  overflow: hidden;
  padding-bottom: 3rem;
}

.teams-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.teams-swiper .team-card {
  width: 100%;
}

.teams-swiper-pagination {
  position: relative !important;
  margin-top: 1.5rem;
  text-align: center;
}

.teams-swiper-pagination .swiper-pagination-bullet {
  background: rgba(0, 0, 0, .3);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: background .3s, transform .3s;
}

.teams-swiper-pagination .swiper-pagination-bullet-active {
  background: rgb(185, 155, 100) !important;
  transform: scale(1.3);
}

.teams-prev,
.teams-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: #000;
  border: 1px solid #BEBEBE;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  transition: background .3s, border-color .3s;
}

.teams-prev {
  left: 0;
}

.teams-next {
  right: 0;
}

.teams-prev:hover,
.teams-next:hover {
  background: rgb(185, 155, 100);
  border-color: rgb(185, 155, 100);
}

.teams-prev svg,
.teams-next svg {
  width: 20px;
  height: 20px;
}

.teams-prev.swiper-button-disabled,
.teams-next.swiper-button-disabled {
  opacity: .3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Partners consultant swiper */
.partners-consultant-swiper .swiper-wrapper {
  align-items: stretch;
  margin-bottom: 20px;
}

.partners-consultant-swiper .swiper-slide {
  display: flex;
  height: auto;
}

.partners-prev,
.partners-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: #000;
  border: 1px solid #BEBEBE;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  transition: background .3s, border-color .3s, color .3s;
}

.partners-prev {
  left: 10px;
}

.partners-next {
  right: 10px;
}

.partners-prev:hover,
.partners-next:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}

.partners-prev svg,
.partners-next svg {
  width: 20px;
  height: 20px;
}

.partners-prev.swiper-button-disabled,
.partners-next.swiper-button-disabled {
  opacity: .3;
  cursor: not-allowed;
  pointer-events: none;
}

/* RB Swiper (4+ posts outer slider) */
.rb-swiper {
  overflow: hidden;
  cursor: grab;
}

.rb-swiper:active {
  cursor: grabbing;
}

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

.rb-swiper-nav {
  display: flex;
  justify-content: flex-end;
  gap: .75rem;
  margin-top: 2rem;
  position: relative;
}

.rb-prev,
.rb-next {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: transform .3s, opacity .3s;
  flex-shrink: 0;
}

.related-blogs-section:hover .rb-prev,
.related-blogs-section:hover .rb-next {
  opacity: 1;
  pointer-events: auto;
}

.rb-prev:hover,
.rb-next:hover {
  transform: scale(1.1);
  opacity: 1;
}

.rb-prev img,
.rb-next img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  filter: invert(1);
}

/* ─────────────────────────────────────────────────────────────
   11. OVERLAYS & ANIMATIONS
   ───────────────────────────────────────────────────────────── */
.hero-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .7) 100%);
  z-index: 1;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .7) 70%, rgb(0, 0, 0) 100%);
}

.about-us.page-hero-overlay {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, .6) 42%, rgba(0, 0, 0, 1) 100%);
}

.contact-us.page-hero-overlay {
  background-image: linear-gradient(rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .97) 70%, rgba(0, 0, 0, 1) 100%);
}

.page-header-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, .8) 0%, rgba(0, 0, 0, .3) 30%, rgba(0, 0, 0, .6) 100%);
}

.cross-image-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(4, 79, 57, .8) 0%, rgba(4, 79, 57, .8) 0%);
}


.image-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .7);
}

.group:hover .overlay-custom {
  background-color: rgba(0, 0, 0, .5) !important;
}

/* AOS overrides */
[data-aos=fade-left] {
  transform: translateX(-100px);
}

[data-aos=fade-right] {
  transform: translateX(100px);
}

[data-aos=fade-up] {
  transform: translateY(50px);
}

/* Entrance animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

.fade-1 {
  animation: fadeUp .7s ease .05s both;
}

.fade-2 {
  animation: fadeUp .7s ease .15s both;
}

.fade-3 {
  animation: fadeUp .7s ease .25s both;
}

.fade-4 {
  animation: fadeUp .7s ease .35s both;
}

.fade-s1 {
  animation: fadeUp .6s ease .20s both;
}

.fade-s2 {
  animation: fadeUp .6s ease .30s both;
}

.fade-s3 {
  animation: fadeUp .6s ease .40s both;
}

.fade-s4 {
  animation: fadeUp .6s ease .50s both;
}

/* ─────────────────────────────────────────────────────────────
   12. BUTTONS & LINKS
   ───────────────────────────────────────────────────────────── */
.button {
  display: inline-flex;
  justify-content: center;
  min-width: 180px;
  padding: 1rem 2rem;
  border-radius: 0;
  text-align: center;
  background-color: #000;
  color: #fff;
  transition: .3s;
  cursor: pointer;
}

.button:hover {
  background-color: #000;
}

.button-line {
  background-color: transparent;
  border: 1px solid white;
}

.button-line:hover {
  border: 1px solid #000;
  background-color: white;
  color: #000;
}

.button-w {
  background-color: white;
  border: 1px solid #000;
  color: black;
}

.button-w:hover {
  background-color: #000;
  color: #fff;
}

.feature-btn:hover {
  background-color: transparent;
}

a.feature-btn {
  border: 1px solid #000;
}

.btn-gold {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid rgb(185, 155, 100);
  color: rgb(185, 155, 100);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: capitalize;
  text-decoration: none;
  transition: background .3s, color .3s;
  white-space: nowrap;
}

.btn-gold:hover {
  background: rgb(185, 155, 100);
  color: #000;
}

.btn-dark {
  display: inline-block;
  padding: 14px 28px;
  border: 1.5px solid #000;
  color: #000;
  font-size: 16px;
  /* font-weight: 500; */
  /* letter-spacing: .18em; */
  text-transform: capitalize;
  text-decoration: none;
  transition: background .3s, color .3s;
  white-space: nowrap;
}

.btn-dark:hover {
  background: #000;
  color: #fff;
}

.btn-gold-dark {
  display: inline-block;
  padding: 14px 28px;
  background: #000;
  color: rgb(185, 155, 100);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: capitalize;
  text-decoration: none;
  transition: background .3s, color .3s;
  white-space: nowrap;
}

.btn-gold-dark:hover {
  background: rgb(185, 155, 100);
  color: #000;
}

.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: capitalize;
  color: rgb(185, 155, 100);
  text-decoration: underline;
  transition: gap .3s;
}

.link-gold:hover {
  gap: 14px;
}

.project-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─────────────────────────────────────────────────────────────
   13. COMPONENTS
   ───────────────────────────────────────────────────────────── */

/* ── Hero Section ── */
.hero-section {
  background-color: #000;
  color: #fff;
  padding: 48px 20px;
  text-align: center;
}

.hero-inner {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-top-title {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .04em;
  margin: 0;
}

.hero-sub-title {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  margin: 0;
  max-width: 380px;
}

.hero-main-title {
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 400 !important;
  color: #fff;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -.01em;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn {
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity .2s;
  letter-spacing: .01em;
}

.hero-btn::after {
  content: '→';
  font-size: 14px;
}

.hero-btn--primary {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  padding-bottom: 2px;
  background: transparent;
}

.hero-btn--primary:hover {
  opacity: .6;
}

/* ── Stats / Increase Numbers ── */
.increase-number-wrap.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.increase-number-wrap h1 .prepend,
.increase-number-wrap h1 .append {
  font-size: 50px !important;
}

.increase-number-wrap .desc {
  margin-top: .5rem;
}

.increase-number {
  opacity: 0;
  transition: opacity .5s ease-in-out;
}

.increase-wrapper {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}

.increase-wrapper span {
  white-space: nowrap;
  font-family: 'Inter Tight';
  font-weight: 400;
}

/* ── Blog Cards (homepage) ── */
.blog-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-project-tag {
  display: inline-block;
  padding: 4px 14px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgb(185, 155, 100);
  border: 1px solid rgba(185, 155, 100, .4);
  border-radius: 999px;
  background: rgba(185, 155, 100, .05);
}

.blog-project-tag-2 {
  display: inline-block;
  padding: 4px 14px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: white;
  border: 1px solid rgba(185, 155, 100, .4);
  border-radius: 999px;
  background: #000;
}

/* ── RB Section (related blogs on project pages) ── */
.rb-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}

.rb-no-img {
  width: 100%;
  height: 100%;
  background: #e5e5e5;
}

.rb-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.rb-single:hover .parcel-title {
  color: rgb(185, 155, 100);
}

.rb-single__img {
  height: 480px;
  overflow: hidden;
  border-radius: 1.5rem;
}

.rb-single__img img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform .5s;
}

.rb-single:hover .rb-single__img img {
  transform: scale(1.04);
}

.rb-single__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rb-grid {
  display: grid;
  gap: 2rem;
}

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

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

.rb-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.rb-card:hover .parcel-title {
  color: rgb(185, 155, 100);
}

.rb-card__img {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 1.5rem;
  margin-bottom: 1.25rem;
}

.rb-card__img img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform .5s;
}

.rb-card:hover .rb-card__img img {
  transform: scale(1.05);
}

.rb-card__cat {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.rb-card__text {
  display: flex;
  flex-direction: column;
}

/* ── RB Gallery (isolated image slider on project pages) ── */
.rb-gallery-wrap {
  position: relative;
  overflow: hidden;
}

.rb-gallery-wrap .rb-gallery-swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.rb-gallery-wrap .rb-gallery-swiper .swiper-wrapper {
  height: 100%;
}

.rb-gallery-wrap .rb-gallery-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
}

.rb-gallery-wrap .rb-gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s;
}

.rb-card:hover .rb-gallery-wrap .rb-gallery-swiper .swiper-slide img,
.rb-single:hover .rb-gallery-wrap .rb-gallery-swiper .swiper-slide img {
  transform: scale(1.05);
}

.rb-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, .25) 100%);
  pointer-events: none;
  z-index: 5;
}

.rb-gallery-prev,
.rb-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, .55);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, background .25s, transform .25s;
}

.rb-gallery-wrap:hover .rb-gallery-prev,
.rb-gallery-wrap:hover .rb-gallery-next {
  opacity: 1;
  pointer-events: auto;
}

.rb-gallery-prev {
  left: 10px;
}

.rb-gallery-next {
  right: 10px;
}

.rb-gallery-prev:hover,
.rb-gallery-next:hover {
  background: rgba(0, 0, 0, .85);
  transform: translateY(-50%) scale(1.08);
}

.rb-gallery-prev svg,
.rb-gallery-next svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.rb-gallery-tags {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 15;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rb-gallery-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: #000;
  border: 1px solid rgba(185, 155, 100, .5);
  border-radius: 999px;
  line-height: 1.4;
}

/* ── Consultants ── */
.consultant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.consultant-card {
  background: #fff;
  border: 1px solid #BEBEBE;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  align-items: center;
  justify-content: center;
  transition: border-color .3s;
}

.consultant-card:hover {
  border-color: rgb(185, 155, 100);
}

.consultant-photo {
  width: 200px;
  height: 200px;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0 auto;
}

.consultant-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 9999px;
}

.consultant-logo {
  width: 120px;
  height: 40px;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.consultant-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.consultant-divider {
  display: block;
  width: 100%;
  height: 1px;
  background: #BEBEBE;
}

.consultant-role-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: capitalize;
  color: rgb(185, 155, 100);
  margin-bottom: .5rem;
}

.consultant-desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(14, 22, 33, .65);
  display: -webkit-box;
  line-clamp: 6;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Teams grid ── */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.team-logo {
  display: flex;
  justify-content: center;
  height: 90px;
  align-items: center;
}

.team-logo img {
  max-height: 60px;
  max-width: 120px;
  object-fit: contain;
}

.team-img {
  display: flex;
  justify-content: center;
}

.team-img img {
  width: 200px;
  height: 200px !important;
  border-radius: 50%;
  object-fit: cover;
  margin: auto;
  object-position: top;
}

.team-name {
  margin-top: 10px;
  color: #000;
  text-transform: capitalize;
  font-size: var(--wp--preset--font-size--medium) !important;
  font-weight: 500 !important;
}

body .team-role {
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 0 !important;
  text-transform: capitalize;
  margin-top: 5px;
}

.team-btn {
  display: inline-block;
  background: #1e2d3d;
  color: #fff;
  padding: 5px 20px;
  margin-top: 10px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 5px;
}

.team-desc {
  font-size: 14px;
  color: #999;
  margin-top: 6px;
}

.team-btn:hover {
  background-color: rgb(185, 155, 100) !important;
}

.teams-grid .team-card .team-logo img {
  width: 125px;
  object-fit: contain;
  height: 84px !important;
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(503%) hue-rotate(246deg) brightness(120%) contrast(92%);
}

.member .photo {
  transition: .3s;
}

.member:hover .photo {
  transform: scale(1.1);
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid #BEBEBE;
}

.faq-item:first-child {
  border-top: 1px solid #BEBEBE;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.75rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  color: #000;
  gap: 1rem;
  transition: color .3s;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
  color: rgb(185, 155, 100);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform .35s;
  color: rgb(185, 155, 100);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4, 0, .2, 1);
}

.faq-answer-inner {
  padding-bottom: 1.75rem;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(14, 22, 33, .65);
}

/* ── Single Post ── */
.single-hero-section {
  height: auto;
  overflow: visible;
  padding: 10rem 1.5rem 3rem;
  position: relative;
}

.single-post-title {
  font-size: clamp(28px, 4vw, 56px) !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  text-align: center;
  margin: 1rem auto 2rem;
  max-width: 1400px;
  word-break: break-word;
  overflow-wrap: break-word;
  padding: 0 1rem;
}

.parcel-body--clamp {
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Join Team Card ── */
.join-team-card {
  background-color: #000;
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
}

.join-team-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 1.5rem;
  color: #fff;
  gap: 1rem;
}

.join-team-title {
  font-family: Hedvig Letters Serif, serif;
  text-transform: capitalize !important;
  font-size: clamp(20px, 2vw, 28px) !important;
  font-weight: 400 !important;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.join-team-desc {
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, .75);
  margin: 0;
  flex: 1;
}

.join-team-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, .6);
  background: transparent;
  color: #fff;
  font-family: "Inter Tight", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: capitalize;
  cursor: pointer;
  width: 100%;
  margin-top: auto;
  transition: background .3s, border-color .3s, color .3s;
}

.join-team-btn:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.member:has(.join-team-card):hover .join-team-card {
  opacity: .9;
}

/* ── Milestone Table ── */
.milestone-row-head {
  border-bottom: 1.5px solid #d1d5db;
}

.milestone-row {
  border-bottom: 1px solid #e5e7eb;
}

.milestone-label {
  font-weight: 500;
}

.milestone-badge {
  display: inline-block;
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: capitalize;
  padding: 3px 10px;
  border-radius: 4px;
}

.badge-approved {
  background: #d4f4e8;
  color: #0d5c3a;
}

.badge-inprogress {
  background: #e8effc;
  color: #1a3d8f;
}

.badge-upcoming {
  background: #fdf2d6;
  color: #7c5200;
}

.milestone-note {
  display: block;
  font-size: .78rem;
  color: #6b7280;
  margin-top: 6px;
  line-height: 1.6;
}

.milestone-block-line {
  display: block;
  font-size: .78rem;
  color: #6b7280;
  line-height: 1.7;
}

.milestone-block-label {
  color: #010a11;
  font-weight: 500;
}

/* ── Enquire Section ── */
.enquire-section {
  padding: 0;
  overflow: hidden;
}

.enquire-wrap {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 600px;
}

.enquire-img-col {
  position: relative;
  overflow: hidden;
}

.enquire-img-col img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block;
}

.enquire-form-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

/* ── CAB Steps ── */
.cab__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

.cab__headline-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cab__headline {
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.01em;
}

.cab__intro-quote {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.4;
  color: #000;
  border-left: 2px solid rgba(185, 155, 100, .5);
  padding-left: 20px;
}

.cab__divider {
  width: 100%;
  height: 1px;
  background: rgba(14, 22, 33, .12);
  margin: 64px 0;
}

.cab__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cab__step {
  display: grid;
  grid-template-columns: 80px 1px 1fr auto;
  gap: 0 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(14, 22, 33, .08);
  transition: all .3s;
  cursor: default;
}

.cab__step:hover {
  background: rgba(14, 22, 33, .02);
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 -12px;
}

.cab__step--last {
  border-bottom: none;
}

.cab__step-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: rgba(14, 22, 33, .12);
  line-height: 1;
  transition: color .3s;
}

.cab__step:hover .cab__step-num {
  color: rgb(185, 155, 100);
}

.cab__step-line {
  width: 1px;
  height: 48px;
  background: rgba(14, 22, 33, .1);
  flex-shrink: 0;
}

.cab__step-content {
  padding: 0 24px;
}

.cab__step-title {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 6px;
  color: #000;
  transition: color .3s;
}

.cab__step-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: capitalize;
  color: rgb(185, 155, 100);
  border: 1px solid rgba(185, 155, 100, .3);
  padding: 6px 14px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s;
}

.cab__step:hover .cab__step-tag {
  opacity: 1;
}

.cab__outcomes {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
  border: 1px solid rgba(14, 22, 33, .1);
  flex-wrap: wrap;
}

.cab__outcome {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  min-width: 180px;
}

.cab__outcome-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.cab__outcome-sep {
  width: 1px;
  height: 56px;
  background: rgba(14, 22, 33, .1);
  flex-shrink: 0;
}

/* ── Parcels ── */
.parcel-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2rem;
}

.parcel-block__img {
  height: 640px;
  overflow: hidden;
}

.parcel-block__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.parcel-block__text a.btn-dark {
  width: max-content;
}

.parcel-eyebrow {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: capitalize;
  color: rgb(185, 155, 100);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.parcel-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: rgb(185, 155, 100);
  flex-shrink: 0;
}

.parcel-title {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 300;
  line-height: 1.2;
}

.parcel-body.short {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

a.parcel-body.text-white:hover {
  color: white;
}

.parcel-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.parcel-list li {
  font-size: 18px;
  font-weight: 300;
  color: rgba(14, 22, 33, .6);
}

.parcel-block .parcel-block__img.height_img {
  height: 450px;
}

/* ── Plan Row / Vision Row ── */
.plan-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 1rem;
  border-bottom: 1px solid #BEBEBE;
  transition: background .3s, padding-left .3s;
}

.plan-row:hover {
  background: #EFEFEF;
  padding-left: 1.5rem;
}

.plan-row:hover .plan-tag {
  border-color: rgba(185, 155, 100, .5);
  color: rgb(185, 155, 100);
}

.plan-row__tags {
  display: flex;
  gap: .5rem;
}

.plan-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: capitalize;
  color: rgba(14, 22, 33, .45);
  border: 1px solid #BEBEBE;
  padding: 5px 12px;
  white-space: nowrap;
  transition: border-color .3s, color .3s;
}

.vision-row {
  display: grid;
  grid-template-columns: 120px 1fr 200px;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(217, 221, 226, .08);
  transition: background .25s;
}

.vision-row:first-child {
  border-top: 1px solid rgba(217, 221, 226, .08);
}

.vision-num {
  font-size: 48px;
  font-weight: 300;
  color: rgb(185, 155, 100);
  line-height: 1;
  padding-top: 4px;
}

.vision-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: capitalize;
  color: rgba(14, 22, 33, .4);
  border: 1px solid rgba(14, 22, 33, .15);
  padding: 5px 12px;
  white-space: nowrap;
}

/* ── Location ── */
.location-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.location-icon {
  width: 36px;
  height: auto;
}

.location-icon img {
  filter: brightness(0) invert(1);
}

.location-content {
  display: flex;
  flex-direction: column;
}

.location-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1px;
  opacity: .6;
  color: #fff;
}

.location-link {
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: .3s;
}

.location-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: .3s ease;
}

.location-link:hover {
  opacity: .9;
}

.location-link:hover::after {
  width: 100%;
}

/* ── Partner Logo ── */
.partner-logo {
  max-width: 100%;
  max-height: 160px;
  object-fit: contain !important;
}

/* ── Share / Copy ── */
.share-fb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  border: 1px solid #BEBEBE;
  overflow: hidden;
  transition: all .3s;
}

.share-fb:hover {
  border-color: #1877F2;
  background-color: #1877F2;
}

.share-fb img {
  width: auto;
  border-radius: 54%;
  object-fit: cover;
}

.copy-link {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.copy-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.copy-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all .3s;
}

.copy-btn:hover {
  background: #333;
  transform: scale(1.05);
}

.copy-tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #000;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  white-space: nowrap;
}

.copy-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
}

.copy-link.active .copy-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Decorative ── */
.deco-circle-lg {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 9999px;
  border: 1px solid rgba(185, 155, 100, .12);
  pointer-events: none;
}

.deco-circle-sm {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 320px;
  height: 320px;
  border-radius: 9999px;
  border: 1px solid rgba(185, 155, 100, .07);
  pointer-events: none;
}

.watermark {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 600;
  color: rgba(14, 22, 33, .04);
  letter-spacing: -.02em;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
}

.line-gold {
  display: block;
  width: 36px;
  height: 1px;
  background: rgb(185, 155, 100);
  opacity: .7;
  flex-shrink: 0;
}

.line-dark {
  display: block;
  width: 36px;
  height: 1px;
  background: #000;
  opacity: .4;
  flex-shrink: 0;
}

.icon-box {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(185, 155, 100, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-index {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: .1em;
  color: rgb(185, 155, 100);
  opacity: .7;
}

.closing-inner {
  align-items: center;
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.quote-block {
  padding-top: 2rem;
}

.quote-text {
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: white;
}

.stat-card {
  background: rgb(20, 32, 48);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: rgb(185, 155, 100);
  transition: width .4s;
}

.stat-card:hover {
  background: #000;
}

.stat-card:hover::after {
  width: 100%;
}

.pillar-card {
  background: #000;
  transition: background .3s;
  border-color: white;
}

.pillar-card:hover {
  background: #000;
}

.infra-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, .1);
  transition: background .3s;
}

.infra-card:last-child {
  border-right: none;
}

.infra-card:hover {
  background: rgba(255, 255, 255, .04);
}

.infra-num {
  font-size: 52px;
  font-weight: 300;
  color: rgb(185, 155, 100);
  line-height: 1;
  margin-bottom: 1.5rem;
}

span.salelable {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: #E02424;
  color: #fff;
  text-transform: capitalize;
  font-weight: bold;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .3);
  z-index: 10;
  pointer-events: none;
}

.custom-img-size {
  max-width: 1200px;
  margin: 30px auto;
  height: 600px;
}

.video-link iframe {
  width: 100%;
  height: 100%;
}

.d-flex.s-row {
  display: flex;
  gap: 70px;
}

.d-flex.s-row>div {
  width: 50%;
}

/* .com-images img {
  height: 450px !important;
} */

/* ─────────────────────────────────────────────────────────────
   14. UTILITIES — colours, spacing, display, misc
   ───────────────────────────────────────────────────────────── */
.text-gold {
  color: rgb(185, 155, 100);
}

.text-gold-light {
  color: rgb(210, 185, 140);
}

.text-grey {
  color: #8a8f96;
}

.text-white-65 {
  color: rgba(255, 255, 255, .65);
}

.text-white-50 {
  color: rgba(255, 255, 255, .5);
}

.text-main-60 {
  color: rgba(14, 22, 33, .6);
}

.text-main-50 {
  color: rgba(14, 22, 33, .5);
}

.bg-gold {
  background-color: rgb(185, 155, 100);
}

.bg-off-white {
  background-color: #f4f2ee;
}

.text-lowercase a {
  text-transform: lowercase !important;
}

.contact-icon {
  width: 20px;
  height: auto;
}

.width-80 {
  width: 80%;
}

.w-\[50\%\] {
  width: 50%;
}

.w-\[80\%\] {
  width: 80%;
}

.max-w-\[440px\] {
  max-width: 440px;
}

.max-w-\[1200px\] {
  max-width: 1200px;
}

.gap-1 {
  gap: 1px;
}

.gap-10 {
  gap: 10px !important;
}

.grow {
  flex: 1;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pt-24 {
  padding-top: 6rem;
}

.pt-\[22rem\] {
  padding-top: 22rem;
}

.tracking-\[\.1em\] {
  letter-spacing: .1em;
}

/* ─────────────────────────────────────────────────────────────
   15. MEDIA QUERIES
   ───────────────────────────────────────────────────────────── */

/* ≤ 1440px */
@media (max-width: 1440px) {
  .custom-img-size {
    height: 500px;
    margin: 30px 6rem;
  }
}

/* ≤ 1400px */
@media (max-width: 1400px) {
  .nav {
    padding: 0 1rem;
  }
}

/* ≤ 1200px */
@media (max-width: 1200px) {

  .detailGallerySwiper .sale-prev,
  .detailGallerySwiper .sale-next {
    width: 60px;
    height: 60px;
  }
}

/* ≤ 1170px */
@media (max-width: 1170px) {
  .nav .nav-menu .container {
    padding-right: 8%;
  }
}

/* ≤ 1100px */
@media (max-width: 1100px) {
  .join-team-desc {
    display: none;
  }

  .join-team-title {
    font-size: clamp(16px, 2.5vw, 22px) !important;
  }

  .join-team-inner {
    padding: 1.1rem;
    gap: .75rem;
  }

  .join-team-btn {
    font-size: 10px;
    padding: 8px 10px;
    letter-spacing: .1em;
  }
}

/* ≤ 1024px (tablet landscape) */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px 30px;
  }

  .footer-logo-col {
    grid-column: 1 / -1;
    align-items: center;
  }

  .footer-nav-col {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 30px;
  }

  .footer-divider {
    margin: 0 30px;
  }

  .footer-bottom {
    padding: 24px 30px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-social {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .custom-img-size {
    height: auto;
  }

  .increase-number-wrap .text-left {
    text-align: center;
  }

  section.home-section2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 20px 0 !important;
    background-image: none !important;
    color: #000 !important;
  }

  .home-section2 .container.grid.grid-cols-2 {
    grid-template-columns: 1fr;
  }

  .home-section2 .button-line {
    border: 1px solid #000;
    color: #000;
  }

  .responsive-reverse {
    display: flex !important;
    flex-direction: column-reverse !important;
    align-items: unset !important;
  }

  section.section.section-space.feature-section {
    padding-inline: 0;
  }

  .enquire-wrap {
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
  }

  .enquire-form-col {
    padding: 3rem 2.5rem;
  }

  .partners-prev {
    left: 0;
  }

  .partners-next {
    right: 0;
  }

  .lg\:justify-center {
    justify-content: center;
  }

  .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .lg\:mb-4 {
    margin-bottom: 1rem !important;
  }

  .lg\:py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .lg\:gap-4 {
    gap: 1rem !important;
  }
}

/* ≤ 1023px */
@media (max-width: 1023px) {
  .header {
    height: 100px;
  }

  .section {
    padding: 2rem 1rem;
  }

  section.section.section-bottoms {
    padding: 5rem 1rem 0;
  }

  section.section.section-space {
    padding: 2rem 1.5rem;
  }

  h1 {
    font-size: 46px !important;
  }

  h2 {
    font-size: 32px !important;
  }

  h3 {
    font-size: 24px !important;
  }

  h4 {
    font-size: 20px !important;
  }

  .logo-font h1,
  .logo-font h2 {
    font-size: 56px !important;
  }

  .logo-font .hero-desc {
    font-size: 18px;
  }

  .site-logo {
    width: 160px;
  }

  .overview-grid,
  .section-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .infra-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 2rem 0;
  }

  .infra-card:last-child {
    border-bottom: none;
  }

  .vision-row {
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
  }

  .parcel-block {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .parcel-block__img {
    height: 500px;
  }

  .parcel-block.responsive-reverse {
    flex-direction: column !important;
    margin-bottom: 0;
  }

  .parcel-block.reverse {
    display: flex !important;
    flex-direction: column-reverse !important;
  }

  .step-item {
    grid-template-columns: 48px 1fr;
    gap: 1.5rem;
  }

  .cab__headline-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cab__headline {
    font-size: clamp(52px, 8vw, 80px);
  }

  .cab__step {
    grid-template-columns: 60px 1px 1fr;
    gap: 0 20px;
  }

  .cab__step-tag {
    display: none;
  }

  .cab__step:hover {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
  }

  .cp-img-col {
    order: 1;
  }

  .cp-text-col {
    order: 2;
  }

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

  .rb-single {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .rb-single__img {
    height: 340px;
  }

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

  .saleSwiper .swiper-slide {
    padding-bottom: 0;
  }

  .pb-3 {
    padding-bottom: 4rem !important;
  }

  .d-flex.s-row {
    flex-wrap: wrap;
  }

  .d-flex.s-row>div {
    width: 100%;
  }

  .lg\:order-1 {
    order: 1;
  }

  .lg\:order-none {
    order: 0;
  }

  .lg\:ml-0 {
    margin-left: 0;
  }

  .lg\:ml-2 {
    margin-left: .5rem;
  }

  .lg\:mt-0 {
    margin-top: 0;
  }

  .lg\:mt-4 {
    margin-top: 1rem;
  }

  .lg\:mt-12 {
    margin-top: 3rem;
  }

  .lg\:mt-16 {
    margin-top: 4rem;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-\[400px\] {
    height: 400px;
  }

  .lg\:h-\[500px\] {
    height: 500px;
  }

  .lg\:h-full {
    height: 100%;
  }

  .lg\:w-full {
    width: 100%;
  }

  .lg\:max-w-full {
    max-width: 100%;
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:flex-col {
    flex-direction: column;
  }

  .lg\:gap-8 {
    gap: 2rem;
  }

  .lg\:gap-16 {
    gap: 4rem;
  }

  .lg\:gap-20 {
    gap: 5rem;
  }

  .lg\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .lg\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lg\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .lg\:pb-16 {
    padding-bottom: 4rem;
  }

  .lg\:pb-\[50px\] {
    padding-bottom: 50px;
  }

  .lg\:pt-0 {
    padding-top: 0;
  }

  .lg\:text-center {
    text-align: center;
  }
}

/* ≥ 1024px (desktop only) */
@media (min-width: 1024px) {
  .home-section2 .mobile-image {
    display: none;
  }

  .lg\:order-1 {
    order: 1;
  }

  .lg\:order-2 {
    order: 2;
  }

  .parcel-block {
    display: flex;
    flex-direction: row;
  }

  .parcel-block>div {
    width: 50%;
  }

  .parcel-block.responsive-reverse {
    flex-direction: row-reverse;
  }
}

/* 1024px–1340px */
@media (max-width: 1340px) and (min-width: 1024px) {
  .teams-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ≤ 768px */
@media (max-width: 768px) {
  h1 {
    font-size: 38px !important;
  }

  .section {
    padding: 3rem 1rem;
  }

  section.section.section-bottoms {
    padding: 3rem 1rem 0;
  }

  .custom-img-size {
    height: auto;
    margin: 30px auto;
  }

  .location-item {
    margin-bottom: 20px;
  }

  .md\:py-6 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .md\:mt-0 {
    margin-top: 0 !important;
  }

  .md\:gap-8 {
    gap: 2rem !important;
  }

  .md\:mb-2 {
    margin-bottom: .5rem !important;
  }

  .md\:my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .md\:top-6 {
    top: 1.5rem !important;
  }
  .md\:d-none{
    display: none !important;
  }
}

/* ≥ 768px */
@media (min-width: 768px) {
  section.pb-7 {
    padding-bottom: 7rem;
  }

  .hero-mobile-content {
    display: none !important;
  }

  .hero-desktop-content {
    display: block;
  }

  .hero-media-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* ≤ 767px */
@media (max-width: 767px) {

  body,
  p {
    font-size: 1rem;
  }

  h2 {
    font-size: 24px !important;
  }

  .logo-font h1,
  .logo-font h2 {
    font-size: 32px !important;
  }

  .logo-font .hero-desc {
    font-size: 14px;
  }

  .increase-number-wrap h1,
  .increase-number-wrap h1 .prepend,
  .increase-number-wrap h1 .append {
    font-size: 50px !important;
  }

  .increase-number-wrap .desc {
    font-size: 14px;
  }

  .top-section {
    padding-top: 80px;
    padding-bottom: 0;
  }

  .page-header-section {
    height: 300px;
  }

  .modal-content {
    width: 90%;
  }

  .nav-logo {
    width: 180px;
  }

  #nav-container {
    width: 85vw;
    max-width: 100vw;
    padding: 2rem 1.5rem;
  }

  .nav-menu {
    font-size: 20px;
  }

  .nav-menu #menu-primary li a {
    font-size: 16px;
  }

  .submenu-toggle {
    width: 26px;
    height: 26px;
  }

  .submenu-toggle img {
    width: 22px;
    height: 22px;
  }

  .site-logo {
    margin-bottom: 1.5rem;
  }

  .nav-sticker {
    bottom: 1rem;
    left: 1rem;
    width: 160px;
    height: 160px;
  }

  .deco-circle-lg,
  .deco-circle-sm {
    display: none;
  }

  .swiper-slide {
    font-size: 1rem;
  }

  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    display: none;
  }

  .vision-row {
    padding: 2rem 0;
    gap: 1rem;
  }

  .vision-num {
    font-size: 32px;
  }

  .parcel-block__img {
    height: 450px;
  }

  .step-item {
    grid-template-columns: 48px 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
  }

  .step-n {
    font-size: 32px;
  }

  .plan-row {
    grid-template-columns: 40px 1fr;
    padding: 1.5rem 0;
  }

  .cab__eyebrow {
    margin-bottom: 32px;
  }

  .cab__divider {
    margin: 40px 0;
  }

  .cab__headline {
    font-size: clamp(44px, 12vw, 64px);
  }

  .cab__step {
    grid-template-columns: 48px 1px 1fr;
    gap: 0 16px;
    padding: 20px 0;
  }

  .cab__step-num {
    font-size: 36px;
  }

  .cab__step-line {
    height: 36px;
  }

  .cab__step-content {
    padding: 0 16px;
  }

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

  .cab__outcome {
    min-width: 0;
  }

  .cab__outcome-sep {
    width: 100%;
    height: 1px;
  }

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

  .consultant-card {
    padding: 1.5rem;
  }

  .rb-single__img {
    height: 260px;
  }

  .rb-grid--2,
  .rb-grid--3 {
    grid-template-columns: 1fr;
  }

  .rb-card__img {
    height: 240px;
  }

  .rb-prev,
  .rb-next {
    width: 40px;
    height: 40px;
  }

  .rb-gallery-prev,
  .rb-gallery-next {
    opacity: 1;
    pointer-events: auto;
    width: 30px;
    height: 30px;
  }

  .rb-gallery-prev svg,
  .rb-gallery-next svg {
    width: 13px;
    height: 13px;
  }

  .rb-gallery-prev {
    left: 8px;
  }

  .rb-gallery-next {
    right: 8px;
  }

  #map {
    height: 400px !important;
  }

  .contact-form-wrap .gform_wrapper {
    padding: 1.5rem;
  }

  .contact-form-wrap .gform_wrapper .gform_fields {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap .gform_wrapper .gfield--width-full {
    grid-column: span 1 / span 1;
  }

  .hero-section-wrap {
    display: flex;
    flex-direction: column;
    height: auto !important;
    padding-top: 0 !important;
    padding-inline: 0;
  }

  .hero-media-block {
    position: relative;
    width: 100%;
    height: 85vw;
    min-height: 220px;
    max-height: 400px;
    flex-shrink: 0;
  }

  .hero-media-block video,
  .hero-media-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .hero-media-block .about-us.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero-title-on-image {
    position: absolute;
    bottom: 1.25rem;
    left: 1rem;
    right: 1rem;
    z-index: 10;
    color: #fff;
  }

  .hero-title-on-image h2 {
    font-size: 28px !important;
    line-height: 1.15;
    text-transform: capitalize;
    font-weight: 600 !important;
  }

  .hero-content-below {
    position: relative;
    z-index: 10;
    padding: 1.5rem 1rem .5rem;
    background: #fff;
    color: #010a11;
  }

  .hero-content-below .gsap-subtitle {
    font-size: .7rem;
    letter-spacing: .2em;
    margin-bottom: .75rem;
    color: #010a11;
  }

  .hero-content-below .gsap-desc {
    font-size: .95rem;
    line-height: 1.65;
    margin-top: 0;
  }

  .hero-content-below .increase-number-wrap {
    gap: 1.25rem;
    margin-top: 1.25rem;
  }

  .hero-content-below .increase-number-wrap h2 {
    font-size: 34px !important;
  }

  .hero-content-below .button.button-line {
    border: 1px solid #000;
    color: #000;
    margin-top: 1.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-desktop-content {
    display: none !important;
  }

  .hero-mobile-content {
    display: block;
  }

  #precinct-overview .h-\[500px\] {
    height: 350px;
  }

  .enquire-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .enquire-img-col {
    height: 280px;
    width: 100%;
  }

  .enquire-img-col img {
    height: 280px !important;
  }

  .enquire-form-col {
    padding: 2.5rem 1.25rem;
  }

  .teams-prev,
  .teams-next {
    width: 36px;
    height: 36px;
  }

  .teams-prev svg,
  .teams-next svg {
    width: 16px;
    height: 16px;
  }

  .partners-prev,
  .partners-next {
    width: 36px;
    height: 36px;
    top: 35%;
  }

  .partners-prev svg,
  .partners-next svg {
    width: 16px;
    height: 16px;
  }

  .related-prev,
  .related-next {
    left: 0;
    right: 0;
    width: 36px;
    height: 36px;
    top: 28%;
  }

  .related-prev svg,
  .related-next svg {
    width: 16px;
    height: 16px;
  }

  .project-slider-prev,
  .project-slider-next {
    width: 38px;
    height: 38px;
  }

  .project-slider-prev svg,
  .project-slider-next svg {
    width: 18px;
    height: 18px;
  }

  .map-container img {
    height: auto !important;
    object-fit: contain;
  }

  .single-hero-section {
    padding: 6rem 1rem 2rem;
  }

  .single-post-title {
    font-size: clamp(22px, 6vw, 36px) !important;
    margin-bottom: 1.5rem !important;
  }

  .parcel-block .parcel-block__img.height_img {
    height: 320px;
  }

  .join-team-card {
    aspect-ratio: 3/2;
  }

  .join-team-inner {
    padding: 1.25rem;
    gap: .75rem;
  }

  .md\:order-none {
    order: 0;
  }

  .md\:mb-4 {
    margin-bottom: 1rem;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-\[300px\] {
    height: 300px;
  }

  .md\:h-\[400px\] {
    height: 400px;
  }

  .md\:h-auto {
    height: auto;
  }

  .md\:w-10 {
    width: 2.5rem;
  }

  .md\:w-32 {
    width: 8rem;
  }

  .md\:w-48 {
    width: 12rem;
  }

  .md\:w-52 {
    width: 13rem;
  }

  .md\:w-\[200px\] {
    width: 200px;
  }

  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

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

  .md\:flex-col {
    flex-direction: column;
  }

  .md\:gap-16 {
    gap: 4rem;
  }

  .md\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .md\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .md\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .md\:pb-20 {
    padding-bottom: 5rem;
  }

  .md\:pt-0 {
    padding-top: 0;
  }

  .md\:pt-8 {
    padding-top: 2rem;
  }

  .md\:pt-16 {
    padding-top: 4rem;
  }

  .md\:pt-20 {
    padding-top: 5rem;
  }

  .md\:text-center {
    text-align: center;
  }

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .md\:text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
  }

  .md\:items-start {
    align-items: flex-start !important;
  }
}

/* ≤ 640px */
@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 30px;
  }

  .footer-logo-col {
    align-items: center;
  }

  .footer-logo-wrap img {
    width: 100px !important;
    height: auto !important;
  }

  .footer-nav-col {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 24px;
    text-align: center;
  }

  .footer-nav-list {
    gap: 12px;
  }

  .footer-divider {
    margin: 0 20px;
  }

  .footer-bottom {
    padding: 20px;
    gap: 16px;
  }

  .footer-social {
    gap: 16px;
  }

  .footer-social-link {
    font-size: 11px;
    letter-spacing: .08em;
  }

  .hero-section {
    padding: 20px;
  }

  .hero-main-title {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
  }

  #gform_wrapper_2,
  #gform_wrapper_2 .gform_body,
  #gform_wrapper_2 .gform_fields,
  #gform_wrapper_2 .gfield,
  #gform_wrapper_2 .ginput_container {
    width: auto;
  }

  #newsletter .flex {
    max-width: 100%;
  }

  #gform_2 {
    flex-direction: column !important;
  }

  #gform_fields_2 {
    flex-direction: column !important;
    width: 100% !important;
  }

  #input_2_1,
  #gform_submit_button_2 {
    height: 48px !important;
    width: 100% !important;
  }

  #gform_2 .gform_footer {
    flex: none !important;
    width: 100% !important;
  }
}

/* ≤ 639px */
@media (max-width: 639px) {
  .sm-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

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

/* 440px–660px */
@media (max-width: 660px) and (min-width: 440px) {
  .teams-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ≤ 560px */

/* ≤ 480px */
@media (max-width: 480px) {

  .detailGallerySwiper .sale-prev,
  .detailGallerySwiper .sale-next {
    width: 40px;
    height: 40px;
  }

  .single-post-title {
    font-size: clamp(20px, 7vw, 28px) !important;
  }

  .enquire-img-col {
    height: 220px;
  }

  .enquire-img-col img {
    height: 220px !important;
  }

  .enquire-form-col {
    padding: 2rem 1rem;
  }

  .join-team-card {
    aspect-ratio: unset;
    min-height: 200px;
  }
}

/* ≤ 439px */
@media (max-width: 439px) {
  .teams-grid {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 0;
  }
}

/* ≤ 420px */
@media (max-width: 420px) {

  .detailGallerySwiper .sale-prev,
  .detailGallerySwiper .sale-next {
    width: 32px;
    height: 32px;
  }

  .custom-responsive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .custom-responsive-grid h2 {
    font-size: 28px;
  }

  .custom-responsive-grid .desc {
    font-size: 14px;
  }
}

/* ≤ 1023px — single-post responsive */
@media (max-width: 1023px) {
  .single-hero-section {
    padding: 8rem 1rem 3rem;
  }

  .parcel-block .parcel-block__img.height_img {
    height: 450px;
  }
}

.ginput_container_select {
  position: relative;
}

.ginput_container_select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  /* space for arrow */
}

/* Custom arrow */
.ginput_container_select::after {
  content: "▼";
  position: absolute;
  right: 15px;
  /* 👈 adjust this value to move left/right */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
}

/* ── Map iframe skeleton & reveal ── */
.map-iframe-wrap {
  position: relative;
  min-height: 480px;
  /* match your typical iframe height */
}

.map-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      var(--skeleton-a, #e8e8e4) 25%,
      var(--skeleton-b, #f2f2ef) 50%,
      var(--skeleton-a, #e8e8e4) 75%);
  background-size: 200% 100%;
  animation: skeleton-sweep 1.6s ease-in-out infinite;
  border-radius: 4px;
  transition: opacity 0.4s ease;
}

@media (prefers-color-scheme: dark) {
  .map-skeleton {
    --skeleton-a: #2a2a28;
    --skeleton-b: #333330;
  }
}

.map-skeleton.hidden {
  opacity: 0;
  pointer-events: none;
}

.map-iframe-wrap iframe {
  display: block;
  width: 100%;
  border: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.map-iframe-wrap iframe.loaded {
  opacity: 1;
}

@keyframes skeleton-sweep {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Fix swiper image consistency */
.blog-card-swiper-wrap {
  height: 300px;
  /* fixed container height */
  overflow: hidden;
}

.blog-card-swiper .swiper-slide {
  height: 300px !important;
  /* force all slides to same height */
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card-swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-card-swiper .swiper-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  /* fills box, crops overflow */
  object-position: center center !important;
  /* centers the crop */
  display: block;
}