﻿:root {
  --color-white: #ffffff;
  --color-off-white: #fafafa;
  --color-light: #f5f5f5;
  --color-section: #f8f8f8;
  --color-text: #1f1f1f;
  --color-text-light: #5f5f5f;
  --color-muted: #8a8a8a;
  --color-gold: #d4af37;
  --color-gold-dark: #b89222;
  --color-gold-light: #f6e7a8;
  --color-border: #e8e8e8;
  --color-border-light: #f0f0f0;
  --color-success: #1ca672;
  --color-danger: #e5484d;
  --color-warning: #f5a524;
  --font-primary: "Inter", "Poppins", sans-serif;
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-md: 18px;
  --fs-lg: 20px;
  --fs-xl: 24px;
  --fs-2xl: 32px;
  --fs-3xl: 42px;
  --fs-4xl: 54px;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --lh-xs: 1.2;
  --lh-sm: 1.4;
  --lh-base: 1.6;
  --lh-lg: 1.8;
  --ls-tight: -0.5px;
  --ls-normal: 0;
  --ls-wide: 0.5px;
  --container-width: 1280px;
  --container-padding: 20px;
  --section-padding: 100px;
  --section-padding-mobile: 60px;
  --grid-gap: 24px;
  --navbar-height: 78px;
  --navbar-height-mobile: 68px;
  --logo-width: 160px;
  --logo-width-mobile: 120px;
  --nav-link-size: 15px;
  --nav-link-weight: 500;
  --nav-gap: 32px;
  --btn-height: 48px;
  --btn-padding: 0 28px;
  --btn-radius: 12px;
  --card-radius: 18px;
  --card-padding: 28px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  --bg: var(--color-white);
  --section: var(--color-section);
  --card: var(--color-white);
  --gold: var(--color-gold);
  --light-gold: var(--color-gold-light);
  --white: var(--color-text);
  --muted: var(--color-text-light);
  --border: var(--color-border);
  --radius: var(--card-radius);
  --container: var(--container-width);
  --shadow: var(--shadow-sm);
}

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

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--white);
  font-family: Inter, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

button {
  cursor: pointer;
  border: 0;
}

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

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: var(--color-off-white, #fafafa);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--color-off-white, #fafafa);
  border-radius: 99px;
  background: linear-gradient(180deg, var(--color-gold, #d4af37), var(--color-gold-dark, #b89222));
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--color-gold-dark, #b89222), #9d7a18);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

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

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

.section-compact {
  padding-top: 70px;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2,
.section-copy h2,
.contact-cta h2,
.video-content h2,
.detail-content h2,
.sticky-panel h2 {
  max-width: 760px;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.7vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy p,
.page-hero p,
.hero-copy,
.site-footer p,
.detail-content p {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--light-gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
}

.btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 107, 0.5);
  border-radius: 999px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold), var(--light-gold));
  color: #111;
  font-weight: 800;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, var(--light-gold), var(--gold));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(200, 169, 107, 0.24);
}

.btn:hover::after {
  opacity: 1;
}

.btn-ghost,
.btn-small {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.btn-dark {
  background: #0d0d0d;
  color: var(--white);
}

.btn-small {
  min-height: 40px;
  padding: 9px 17px;
  font-size: 0.82rem;
}

.glass {
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-content: center;
  gap: 20px;
  background: #050505;
  text-align: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1px solid rgba(200, 169, 107, 0.45);
  border-radius: 50%;
  color: var(--light-gold);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  animation: pulseGold 1.6s ease-in-out infinite;
}

.loader-mark img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.preloader span {
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes pulseGold {
  0%, 100% {
    box-shadow: 0 0 0 rgba(200, 169, 107, 0);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 42px rgba(200, 169, 107, 0.45);
    transform: scale(1.06);
  }
}

.cursor,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  translate: -50% -50%;
}

.cursor {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200, 169, 107, 0.45);
  border-radius: 50%;
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.cursor.is-active {
  width: 68px;
  height: 68px;
  border-color: rgba(230, 211, 163, 0.9);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  width: min(100% - 32px, var(--container));
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  margin: 14px auto 0;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 14px 0 20px;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-color: var(--border);
  background: rgba(11, 11, 11, 0.72);
  backdrop-filter: blur(24px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: clamp(128px, 13vw, 184px);
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
}

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

.footer-logo {
  width: min(100%, 230px);
  margin-bottom: 20px;
}

.logo span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(200, 169, 107, 0.5);
  border-radius: 50%;
  color: var(--light-gold);
  font-family: "Playfair Display", serif;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu a {
  position: relative;
  color: rgba(245, 245, 245, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.7rem;
}

.hero,
.detail-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-swiper,
.hero-slide,
.detail-swiper,
.detail-swiper .swiper-slide {
  height: 100vh;
}

.hero-slide img,
.detail-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay,
.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 70% 42%, rgba(200, 169, 107, 0.13), transparent 28%), linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.36) 55%, rgba(0, 0, 0, 0.78));
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 78px;
}

.hero h1,
.page-hero h1,
.detail-title h1,
.contact-panel h1 {
  max-width: 980px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6.6vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 30px;
  font-size: clamp(0.98rem, 1.55vw, 1.12rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero .swiper-button-prev,
.hero .swiper-button-next {
  width: 54px;
  height: 54px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
  font-size: 1rem;
}

.swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 999px;
  background: var(--gold);
}

.floating-stats {
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 82px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
}

.floating-stats div {
  min-width: 138px;
  padding: 18px;
  border-right: 1px solid var(--border);
}

.floating-stats div:last-child {
  border-right: 0;
}

.floating-stats strong,
.counter-grid strong {
  display: block;
  color: var(--light-gold);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1;
}

.floating-stats span,
.counter-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.scroll-indicator {
  position: absolute;
  bottom: 34px;
  left: 50%;
  z-index: 6;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 99px;
  translate: -50% 0;
}

.scroll-indicator span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 99px;
  background: var(--gold);
  translate: -50% 0;
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% {
    opacity: 0;
    transform: translateY(0);
  }
  45% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translateY(17px);
  }
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.parallax-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 520px;
}

.parallax-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  scale: 1.08;
}

.section-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 20px 0 26px;
  line-height: 1.72;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 26px 0;
}

.counter-grid div {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.signature {
  color: var(--light-gold) !important;
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
}

.project-swiper {
  overflow: visible;
  padding-bottom: 48px;
}

.property-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #161616;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.property-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.property-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.88));
}

.property-card:hover {
  transform: translateY(-10px);
  border-color: rgba(200, 169, 107, 0.65);
  box-shadow: 0 28px 80px rgba(200, 169, 107, 0.13);
}

.property-card:hover img {
  transform: scale(1.09);
}

.badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  border: 1px solid rgba(230, 211, 163, 0.38);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(0, 0, 0, 0.38);
  color: var(--light-gold);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.property-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 24px;
}

.property-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.property-info h3 {
  margin: 8px 0;
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  line-height: 1.08;
}

.property-info span {
  display: block;
  margin-bottom: 18px;
  color: var(--light-gold);
  font-weight: 800;
}

.property-info a {
  display: inline-flex;
  transform: translateY(18px);
  color: var(--white);
  font-weight: 800;
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease, color 0.35s ease;
}

.property-card:hover .property-info a {
  transform: translateY(0);
  opacity: 1;
}

.property-info a:hover {
  color: var(--light-gold);
}

.vertical-grid,
.amenity-grid,
.blog-grid,
.team-grid,
.values-grid,
.office-grid,
.property-grid {
  display: grid;
  gap: 24px;
}

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

/* .vertical-grid article {
  position: relative;
  display: flex;
  min-height: 285px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.86)), var(--bg) center / cover;
  isolation: isolate;
  transition: transform 0.35s ease, border-color 0.35s ease;
} */

.vertical-grid article {
    position: relative;
    display: flex;
    min-height: 285px;
    flex-direction: column;
     justify-content: flex-end;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    background: var(--bg) center / cover;
    isolation: isolate;
    transition: transform 0.35s ease, border-color 0.35s ease;
    text-align: center;
}

.vertical-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  scale: 1.1;
  transition: opacity 0.45s ease, scale 0.65s ease;
}

.vertical-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 169, 107, 0.65);
}

.vertical-grid article:hover::before {
  opacity: 1;
  scale: 1;
}

.vertical-grid i,
.amenity-grid i,
.values-grid i,
.office-grid i {
  color: var(--light-gold);
  font-size: 2.2rem;
}

.vertical-grid h3,
.amenity-grid h3,
.blog-card h3,
.team-grid h3,
.values-grid h3,
.office-grid h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  line-height: 1.16;
}

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

.amenity-grid article,
.values-grid article,
.office-grid article,
.team-grid article {
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.amenity-grid article:hover,
.values-grid article:hover,
.office-grid article:hover,
.team-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 169, 107, 0.6);
  box-shadow: 0 24px 70px rgba(200, 169, 107, 0.12);
}

.amenity-grid p,
.values-grid p,
.office-grid p,
.team-grid p {
  color: var(--muted);
}

.video-showcase {
  position: relative;
  display: grid;
  min-height: 80vh;
  place-items: center;
  overflow: hidden;
}

.video-showcase video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 920px);
  text-align: center;
}

.video-content .eyebrow {
  justify-content: center;
}

.play-button {
  display: inline-grid;
  width: 82px;
  height: 82px;
  place-items: center;
  margin-top: 30px;
  border: 1px solid rgba(230, 211, 163, 0.52);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--light-gold);
  font-size: 2.8rem;
  backdrop-filter: blur(16px);
}

.testimonial-swiper {
  max-width: 900px;
  padding-bottom: 52px;
}

.testimonial-card {
  border-radius: var(--radius);
  padding: 34px;
  text-align: center;
}

.testimonial-card img {
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  margin-bottom: 16px;
  color: var(--light-gold);
}

.testimonial-card p {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.9rem);
  line-height: 1.34;
}

.testimonial-card h3 {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1rem;
}

.masonry-gallery {
  columns: 3 280px;
  column-gap: 24px;
}

.masonry-gallery button {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: transparent;
}

.masonry-gallery img {
  width: 100%;
  border-radius: var(--radius);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.masonry-gallery button:hover img {
  filter: brightness(1.12);
  transform: scale(1.06);
}

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

.blog-card {
  overflow: hidden;
  border-radius: var(--radius);
}

.blog-card img,
.team-grid img {
  width: 100%;
  aspect-ratio: 1.3;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.blog-card:hover img {
  transform: scale(1.06);
}

.blog-card div {
  padding: 22px;
}

.blog-card span,
.blog-card time {
  display: inline-block;
  margin-right: 12px;
  color: var(--light-gold);
  font-size: 0.8rem;
  font-weight: 800;
}

.blog-card h3 {
  margin: 12px 0 20px;
}

.blog-card a {
  color: var(--light-gold);
  font-weight: 800;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.34), transparent 24%), linear-gradient(135deg, var(--gold), #7d6333);
  color: #0b0b0b;
  text-align: center;
}

.contact-cta .container {
  position: relative;
  z-index: 2;
}

.contact-cta .eyebrow,
.contact-cta h2 {
  color: #080808;
}

.contact-cta .eyebrow::before {
  background: #080808;
}

.particles::before,
.particles::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.particles::before {
  top: 10%;
  left: 8%;
}

.particles::after {
  right: 10%;
  bottom: 8%;
  animation-delay: -3s;
}

@keyframes float {
  50% {
    transform: translateY(-22px) scale(1.05);
  }
}

.site-footer {
  padding: 62px 0 32px;
  background: #070707;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr 1fr;
  gap: 34px;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--light-gold);
  font-family: "Playfair Display", serif;
}

.site-footer a:not(.logo),
.site-footer p {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer a:hover {
  color: var(--light-gold);
  transform: translateX(4px);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials a,
.newsletter button {
  display: grid !important;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white) !important;
  font-size: 1.25rem;
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.newsletter button {
  flex: 0 0 auto;
  background: var(--gold);
  color: #101010 !important;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 62vh;
  place-items: end start;
  overflow: hidden;
  padding: 140px 0 74px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.78)), var(--hero) center / cover;
}

.page-hero p {
  max-width: 700px;
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.65;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.timeline article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--card);
}

.timeline span {
  color: var(--light-gold);
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
}

.timeline h3 {
  margin-top: 12px;
  font-size: 1rem;
}

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

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

.team-grid article {
  overflow: hidden;
  padding: 0;
}

.team-grid h3,
.team-grid p {
  padding-inline: 24px;
}

.team-grid h3 {
  padding-top: 24px;
}

.team-grid p {
  padding-bottom: 26px;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
  border-radius: var(--radius);
  padding: 16px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tabs button,
.pagination button,
.tab-buttons button {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-weight: 800;
}

.filter-tabs button.active,
.pagination button.active,
.tab-buttons button.active {
  border-color: rgba(200, 169, 107, 0.6);
  background: var(--gold);
  color: #111;
}

.search-box {
  display: flex;
  min-width: min(100%, 360px);
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.05);
}

.search-box input {
  width: 100%;
  border: 0;
  padding: 13px 0;
  background: transparent;
  color: var(--white);
  outline: 0;
}

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

.property-grid .property-card {
  min-height: 390px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 38px;
}

.detail-title {
  position: absolute;
  bottom: 76px;
  left: max(20px, calc((100vw - var(--container)) / 2));
  z-index: 2;
  width: min(100% - 40px, 980px);
}

.detail-title p:last-child {
  margin-top: 14px;
  color: var(--light-gold);
  font-weight: 800;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.detail-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}

.sticky-panel {
  position: sticky;
  top: 120px;
  border-radius: var(--radius);
  padding: 24px;
}

.sticky-panel h2 {
  margin-bottom: 22px;
  font-size: 1.8rem;
}

.sticky-panel p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
}

.sticky-panel .btn {
  width: 100%;
  margin-top: 18px;
}

.tabs,
.inquiry-form {
  margin-top: 42px;
  border-radius: var(--radius);
  padding: 22px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel img {
  width: 100%;
  max-height: 460px;
  border-radius: 18px;
  object-fit: cover;
}

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

.amenity-grid.compact article {
  padding: 18px;
  text-align: center;
}

.amenity-grid.compact span {
  display: block;
  color: var(--white);
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.inquiry-form h2,
.contact-form h2 {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form textarea,
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  outline: 0;
}

.inquiry-form textarea,
.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.inquiry-form textarea,
.inquiry-form .btn {
  grid-column: 1 / -1;
}

.map-frame,
.map-frame iframe {
  width: 100%;
  height: 430px;
  margin-top: 42px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(1) invert(0.9);
}

.contact-map {
  position: relative;
  min-height: 100vh;
  padding: 108px 0 54px;
}

.contact-map > iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9);
}

.contact-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.32));
}

.contact-panel {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 620px);
  margin-left: max(20px, calc((100vw - var(--container)) / 2));
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
}

.contact-panel h1 {
  font-size: clamp(2.25rem, 4.8vw, 4.2rem);
}

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

.contact-form select option {
  background: #ffffff;
}

.social-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 42px;
}

.social-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--light-gold);
  font-weight: 800;
}

.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active,
.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.modal button,
.lightbox button {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-size: 2rem;
}

.modal-frame {
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
}

.modal-frame iframe,
.modal-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.lightbox img {
  max-height: 84vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.mobile-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 900;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--light-gold));
  color: #111;
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1180px) {
  .nav-menu {
    gap: 14px;
  }

  .logo {
    width: clamp(124px, 15vw, 168px);
  }

  .nav-menu a {
    font-size: 0.82rem;
  }

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

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

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

@media (max-width: 920px) {
  .cursor,
  .cursor-dot {
    display: none;
  }

  .site-header {
    min-height: 64px;
    margin-top: 10px;
    padding-inline: 12px;
  }

  .logo {
    width: clamp(126px, 34vw, 164px);
  }

  .hide-mobile {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    font-size: 1.55rem;
  }

  .nav-menu {
    position: fixed;
    top: 82px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    background: rgba(11, 11, 11, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
    opacity: 0;
    transform: translateY(-18px);
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }

  .nav-menu.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-menu a {
    padding: 13px 10px;
    /* border-bottom: 1px solid var(--border); */
  }

  .nav-menu a:last-child {
    border-bottom: 0;
  }

  .split-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .floating-stats {
    right: 20px;
    bottom: 74px;
    left: 20px;
    grid-template-columns: repeat(3, 1fr);
  }

  .floating-stats div {
    min-width: 0;
    padding: 14px 10px;
  }

  .floating-stats strong {
    font-size: 1.55rem;
  }

  .floating-stats span {
    font-size: 0.72rem;
  }

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

  .search-box {
    width: 100%;
  }

  .sticky-panel {
    position: relative;
    top: auto;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .section-copy h2,
  .contact-cta h2,
  .video-content h2,
  .detail-content h2,
  .sticky-panel h2 {
    font-size: clamp(1.8rem, 8vw, 2.65rem);
    line-height: 1.1;
  }

  .hero h1,
  .page-hero h1,
  .detail-title h1,
  .contact-panel h1 {
    font-size: clamp(2.35rem, 11vw, 3.65rem);
    line-height: 1.02;
  }

  .hero-copy {
    margin: 18px 0 24px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

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

  .hero-content {
    justify-content: flex-start;
    padding-top: 128px;
    padding-bottom: 148px;
  }

  .hero-actions .btn,
  .section-copy .btn,
  .contact-cta .btn {
    width: 100%;
  }

  .floating-stats {
    grid-template-columns: 1fr 1fr 1fr;
    bottom: 72px;
  }

  .floating-stats div {
    padding: 12px 8px;
  }

  .floating-stats strong {
    font-size: 1.28rem;
  }

  .floating-stats span {
    font-size: 0.62rem;
    line-height: 1.25;
  }

  .scroll-indicator {
    display: none;
  }

  .counter-grid,
  .vertical-grid,
  .amenity-grid,
  .blog-grid,
  .team-grid,
  .values-grid,
  .office-grid,
  .property-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .parallax-card,
  .parallax-card img {
    min-height: 320px;
  }

  .property-card,
  .property-grid .property-card {
    min-height: 350px;
  }

  .property-info {
    padding: 20px;
  }

  .property-info h3 {
    font-size: 1.42rem;
  }

  .amenity-grid article,
  .values-grid article,
  .office-grid article,
  .team-grid article,
  .tabs,
  .inquiry-form {
    padding: 20px;
  }

  .page-hero {
    min-height: 58vh;
    padding: 116px 0 58px;
  }

  .page-hero p {
    font-size: 0.95rem;
  }

  .video-showcase {
    min-height: 58vh;
  }

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

  .filter-tabs button {
    padding-inline: 10px;
  }

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

  .inquiry-form textarea,
  .inquiry-form .btn {
    grid-column: auto;
  }

  .contact-panel {
    margin-inline: auto;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .mobile-cta {
    display: flex;
  }
}

/* =========================================================
   PROFESSIONAL WHITE + GOLD THEME OVERRIDES
========================================================= */

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold, #d4af37) var(--color-off-white, #fafafa);
}

body {
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-base);
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-heading h2,
.section-copy h2,
.contact-cta h2,
.video-content h2,
.detail-content h2,
.sticky-panel h2,
.hero h1,
.page-hero h1,
.detail-title h1,
.contact-panel h1,
.property-info h3,
.vertical-grid h3,
.amenity-grid h3,
.blog-card h3,
.team-grid h3,
.values-grid h3,
.office-grid h3,
.testimonial-card p,
.timeline span {
  color: var(--color-text);
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tight);
}

p,
.section-copy p,
.page-hero p,
.hero-copy,
.site-footer p,
.detail-content p,
.amenity-grid p,
.values-grid p,
.office-grid p,
.team-grid p,
.property-info p {
  color: var(--color-text-light);
  line-height: var(--lh-lg);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  padding-inline: var(--container-padding);
}

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

.section-dark {
  background: var(--color-section);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2,
.section-copy h2,
.contact-cta h2,
.video-content h2,
.detail-content h2 {
  max-width: 1000px;
  font-size: var(--fs-3xl);
  line-height: var(--lh-sm);
}

.eyebrow {
  color: var(--color-gold-dark);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
}

.eyebrow::before {
  background: var(--color-gold);
}

.site-header {
  width: 100%;
  max-width: none;
  min-height: var(--navbar-height);
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--color-border-light);
  border-radius: 0;
  padding: 0 max(var(--container-padding), calc((100vw - var(--container-width)) / 2 + var(--container-padding)));
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-color: var(--color-border-light);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.logo {
  width: var(--logo-width);
}

.logo img {
  max-height: 48px;
}

.nav-menu {
  gap: var(--nav-gap);
}

.nav-menu a {
  color: var(--color-text);
  font-size: var(--nav-link-size);
  font-weight: var(--nav-link-weight);
}

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

.nav-menu a::after {
  bottom: -8px;
  height: 2px;
  background: var(--color-gold);
}

.btn {
  min-height: var(--btn-height);
  border: 1px solid transparent;
  border-radius: var(--btn-radius);
  padding: var(--btn-padding);
  background: var(--color-gold);
  color: #111;
  font-size: 15px;
  font-weight: var(--fw-semibold);
  box-shadow: none;
}

.btn::after {
  display: none;
}

.btn:hover {
  background: var(--color-gold-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-ghost,
.btn-small {
  border-color: var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  backdrop-filter: none;
}

.btn-ghost:hover,
.btn-small:hover {
  border-color: var(--color-gold);
  background: var(--color-white);
  color: var(--color-gold-dark);
}

.btn-dark {
  background: var(--color-text);
  color: var(--color-white);
}

.glass,
.counter-grid div,
.timeline article,
.filter-bar,
.sticky-panel,
.tabs,
.inquiry-form,
.contact-panel,
.testimonial-card,
.blog-card,
.amenity-grid article,
.values-grid article,
.office-grid article,
.team-grid article {
  border: 1px solid var(--color-border);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  backdrop-filter: none;
}

.glass:hover,
.counter-grid div:hover,
.timeline article:hover,
.amenity-grid article:hover,
.values-grid article:hover,
.office-grid article:hover,
.team-grid article:hover,
.blog-card:hover {
  box-shadow: var(--shadow-md);
}

.preloader {
  background: var(--color-white);
  place-items: center;
  place-content: center;
  gap: 18px;
}

.loader-mark {
  width: 118px;
  height: 118px;
  border-color: rgba(212, 175, 55, 0.32);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(212, 175, 55, 0.14);
}

.loader-mark img {
  width: 82px;
  height: 82px;
}

.preloader span {
  color: var(--color-muted);
  margin-top: 2px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.34em;
}

.cursor {
  border-color: rgba(184, 146, 34, 0.35);
}

.cursor-dot {
  background: var(--color-gold);
}

.hero-overlay,
.video-overlay {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0.18) 72%), radial-gradient(circle at 70% 42%, rgba(212, 175, 55, 0.16), transparent 26%);
}

.hero h1,
.page-hero h1,
.detail-title h1,
.contact-panel h1 {
  max-width: 860px;
  font-size: var(--fs-4xl);
  line-height: var(--lh-xs);
}

.hero-copy {
  max-width: 620px;
  font-size: var(--fs-md);
  line-height: var(--lh-lg);
}

.hero .swiper-button-prev,
.hero .swiper-button-next {
  border-color: var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.swiper-pagination-bullet {
  background: var(--color-border);
}

.swiper-pagination-bullet-active {
  background: var(--color-gold);
}

.floating-stats {
  border-radius: var(--card-radius);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.floating-stats div {
  border-right-color: var(--color-border);
}

.floating-stats strong,
.counter-grid strong,
.property-info span,
.signature,
.timeline span,
.stars,
.blog-card span,
.blog-card time,
.blog-card a,
.social-strip a,
.vertical-grid i,
.amenity-grid i,
.values-grid i,
.office-grid i {
  color: var(--color-gold-dark) !important;
}

.scroll-indicator {
  border-color: var(--color-gold);
}

.scroll-indicator span {
  background: var(--color-gold);
}



/*map alter*/






.parallax-card,
.property-card,
.vertical-grid article,
.masonry-gallery button,
.blog-card,
.map-frame,
.map-frame iframe,
.modal-frame,
.lightbox img {
  border-radius: var(--card-radius);
}

.parallax-card {
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.property-card {
  border-color: var(--color-border);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.property-card::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(31, 31, 31, 0.78));
}

.property-card:hover {
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: var(--shadow-lg);
}

.property-info h3,
.property-info a {
  color: var(--color-white);
}

.property-info p {
  color: rgba(255, 255, 255, 0.76);
}

.badge {
  border-color: rgba(212, 175, 55, 0.45);
  background: var(--color-white);
  color: var(--color-gold-dark);
  box-shadow: var(--shadow-sm);
}

.vertical-grid article {
  border-color: var(--color-border);
      background-color: white;
}

.video-showcase {
  background: var(--color-section);
}

.play-button {
  border-color: var(--color-gold);
  background: var(--color-white);
  color: var(--color-gold-dark);
  box-shadow: var(--shadow-md);
}

.testimonial-card img {
  border-color: var(--color-gold);
}

.contact-cta {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
}

.contact-cta .eyebrow,
.contact-cta h2 {
  color: var(--color-text);
}

.site-footer {
  background: var(--color-off-white);
  border-top: 1px solid var(--color-border-light);
}

.site-footer h3 {
  color: var(--color-text);
}

.site-footer a:not(.logo),
.site-footer p {
  color: var(--color-text-light);
}

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

.socials a,
.newsletter button {
  border-color: var(--color-border);
  background: var(--color-white);
  color: var(--color-text) !important;
}

.newsletter input,
.search-box,
.inquiry-form input,
.inquiry-form textarea,
.contact-form input,
.contact-form textarea,
.contact-form select {
  border-color: var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
}

.newsletter button {
  background: var(--color-gold);
  color: #111 !important;
}

.page-hero {
  min-height: 58vh;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.22)), var(--hero) center / cover;
}

.filter-tabs button,
.pagination button,
.tab-buttons button {
  border-color: var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
}

.filter-tabs button.active,
.pagination button.active,
.tab-buttons button.active {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: #111;
}

.detail-hero::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18));
}

.detail-title p:last-child {
  color: var(--color-gold-dark);
}

.map-frame,
.map-frame iframe,
.contact-map > iframe {
  filter: grayscale(0.12) saturate(0.88);
}

.contact-map::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.46));
}

.modal,
.lightbox {
  background: rgba(255, 255, 255, 0.88);
}

.modal button,
.lightbox button {
  background: var(--color-gold);
  color: #111;
}

.mobile-cta {
  border-radius: var(--btn-radius);
  background: var(--color-gold);
  color: #111;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
  :root {
    --fs-4xl: 46px;
    --fs-3xl: 36px;
    --section-padding: 80px;
  }

  .nav-menu {
    gap: 22px;
  }
}

@media (max-width: 768px) {
  :root {
    --fs-4xl: 36px;
    --fs-3xl: 30px;
    --fs-2xl: 26px;
    --fs-xl: 22px;
    --container-padding: 16px;
    --navbar-height: var(--navbar-height-mobile);
    --logo-width: var(--logo-width-mobile);
    --section-padding: var(--section-padding-mobile);
  }

  .site-header {
    min-height: var(--navbar-height-mobile);
    padding-inline: var(--container-padding);
  }

  .logo {
    width: var(--logo-width-mobile);
  }

  .logo img {
    max-height: 42px;
  }

  .nav-menu {
    background: var(--color-white);
  }

  .nav-menu a {
    color: var(--color-text);
    font-size: 14px;
  }

  .hero h1,
  .page-hero h1,
  .detail-title h1,
  .contact-panel h1 {
    font-size: var(--fs-4xl);
    line-height: 1.16;
  }

  .hero-copy,
  p {
    font-size: 15px;
  }

  .section-heading h2,
  .section-copy h2,
  .contact-cta h2,
  .video-content h2,
  .detail-content h2 {
    font-size: var(--fs-3xl);
  }
}

@media (max-width: 576px) {
  h1,
  .hero h1,
  .page-hero h1,
  .detail-title h1,
  .contact-panel h1 {
    line-height: 1.18;
  }

  .btn {
    width: 100%;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.3));
  }
}

/* =========================================================
   PROFESSIONAL CONTACT PAGE
========================================================= */

.contact-hero {
  padding: 138px 0 90px;
  background:
    linear-gradient(135deg, rgba(246, 231, 168, 0.42), rgba(255, 255, 255, 0.94) 44%, var(--color-section)),
    radial-gradient(circle at 12% 20%, rgba(212, 175, 55, 0.18), transparent 28%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.contact-intro h1 {
  max-width: 760px;
  color: var(--color-text);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -1px;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 20px;
  color: var(--color-text-light);
  font-size: 17px;
  line-height: 1.8;
}

.contact-direct {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin-top: 30px;
}

.contact-direct a {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
}

.contact-direct a:hover {
  border-color: rgba(212, 175, 55, 0.54);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-direct i {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: var(--color-gold);
  color: #111;
  font-size: 22px;
}

.contact-direct span {
  display: grid;
  gap: 2px;
  font-weight: var(--fw-bold);
  line-height: 1.25;
}

.contact-direct small {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(246, 231, 168, 0.22);
  color: var(--color-text);
  font-size: 13px;
  font-weight: var(--fw-semibold);
}

.contact-trust i {
  color: var(--color-gold-dark);
  font-size: 17px;
}

.contact-hero .contact-panel {
  width: 100%;
  margin: 0;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow-lg);
}

.contact-panel h2 {
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

.contact-form {
  gap: 14px;
  margin-top: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  min-height: 52px;
  border-radius: 14px;
  background: var(--color-off-white);
}

.contact-form textarea {
  min-height: 140px;
}

.contact-form button {
  min-height: 54px;
  border-radius: 14px;
}

.contact-map-section {
  padding: 90px 0;
  background: var(--color-white);
}

.contact-map-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.contact-map-card iframe {
  width: 100%;
  height: 430px;
  border: 0;
  filter: grayscale(0.08) saturate(0.92);
}

.office-grid article {
  position: relative;
  overflow: hidden;
}

.office-grid article::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
}

.office-grid article > i {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: rgba(246, 231, 168, 0.32);
}

.social-strip {
  margin-top: 44px;
}

.social-strip a {
  border-color: rgba(212, 175, 55, 0.28);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.social-strip a:hover {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: #111 !important;
}

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

@media (max-width: 680px) {
  .contact-hero {
    padding: 112px 0 64px;
  }

  .contact-intro h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .contact-intro > p:not(.eyebrow) {
    font-size: 15px;
  }

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

  .contact-map-section {
    padding: 64px 0;
  }

  .contact-map-card iframe {
    height: 340px;
  }
}

/* =========================================================
   PROFESSIONAL PROJECT GALLERY
========================================================= */

#gallery {
  background:
    linear-gradient(180deg, var(--color-section), var(--color-white));
}

#gallery .section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

#gallery .section-heading h2 {
  max-width: 760px;
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 18px;
  columns: auto;
}

.masonry-gallery button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  isolation: isolate;
}

.masonry-gallery button:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.masonry-gallery button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.72));
  opacity: 0.82;
  transition: opacity var(--transition-normal);
}

.masonry-gallery button::after {
  content: attr(data-title) "\\A" attr(data-meta);
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  color: var(--color-white);
  font-size: 18px;
  font-weight: var(--fw-bold);
  line-height: 1.28;
  text-align: left;
  white-space: pre-line;
  transform: translateY(6px);
  transition: transform var(--transition-normal);
}

.masonry-gallery button[data-meta]::after {
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.masonry-gallery img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.65s ease;
}

.masonry-gallery button:first-child img {
  object-position: center right;
}

.masonry-gallery button:hover {
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow: var(--shadow-lg);
}

.masonry-gallery button:hover::before {
  opacity: 0.94;
}

.masonry-gallery button:hover::after {
  transform: translateY(0);
}

.masonry-gallery button:hover img {
  filter: saturate(1.05) brightness(1.04);
  transform: scale(1.055);
}

.masonry-gallery button:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.32);
  outline-offset: 4px;
}

@media (max-width: 1024px) {
  .masonry-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 240px;
  }
}

@media (max-width: 680px) {
  #gallery .section-heading {
    display: block;
  }

  .masonry-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    gap: 14px;
  }

  .masonry-gallery button:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .masonry-gallery button::after {
    right: 16px;
    bottom: 16px;
    left: 16px;
    font-size: 16px;
  }
}

/* =========================================================
   PROFESSIONAL SWIPER CONTROLS
========================================================= */

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

.swiper-button-prev,
.swiper-button-next {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-text);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  transition: transform var(--transition-normal), background var(--transition-normal), color var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 15px;
  font-weight: 900;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: #111;
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.swiper-button-prev:focus-visible,
.swiper-button-next:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.28);
  outline-offset: 4px;
}

.swiper-button-disabled {
  opacity: 0.35 !important;
}

.swiper-pagination {
  line-height: 1;
}

.swiper-pagination-bullet {
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: rgba(31, 31, 31, 0.14);
  opacity: 1;
  transition: width var(--transition-normal), background var(--transition-normal), transform var(--transition-normal);
}

.swiper-pagination-bullet:hover {
  background: rgba(184, 146, 34, 0.5);
  transform: scaleX(1.08);
}

.swiper-pagination-bullet-active {
  width: 46px;
  background: var(--color-gold);
}

.project-swiper,
.testimonial-swiper {
  position: relative;
}

.project-swiper .swiper-button-prev,
.project-swiper .swiper-button-next {
  top: auto;
  bottom: 0;
  margin-top: 0;
}

.project-swiper .swiper-button-prev {
  right: 62px;
  left: auto;
}

.project-swiper .swiper-button-next {
  right: 0;
}

.project-swiper .swiper-pagination {
  bottom: 16px;
  left: 0;
  width: auto;
  text-align: left;
}

.testimonial-swiper .swiper-pagination {
  bottom: 0;
}

.detail-swiper .swiper-button-prev,
.detail-swiper .swiper-button-next {
  z-index: 5;
}

.detail-swiper .swiper-button-prev {
  left: max(20px, calc((100vw - var(--container-width)) / 2 + 20px));
}

.detail-swiper .swiper-button-next {
  right: max(20px, calc((100vw - var(--container-width)) / 2 + 20px));
}

.detail-swiper .swiper-pagination {
  bottom: 34px;
}

@media (max-width: 680px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 42px;
    height: 42px;
  }

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

  .project-swiper .swiper-pagination {
    right: 0;
    text-align: center;
    width: 100%;
  }
}

/* =========================================================
   PROFESSIONAL CONTACT CTA
========================================================= */

.contact-cta {
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(246, 231, 168, 0.58), rgba(255, 255, 255, 0.92) 52%, rgba(248, 248, 248, 0.98)),
    radial-gradient(circle at 8% 20%, rgba(212, 175, 55, 0.18), transparent 28%);
  color: var(--color-text);
  text-align: left;
}

.contact-cta::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 28px;
  pointer-events: none;
}

.contact-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.contact-cta-copy h2 {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--color-text);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.8px;
}

.contact-cta-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--color-text-light);
  font-size: 17px;
  line-height: 1.75;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cta-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(246, 231, 168, 0.22);
  color: var(--color-text);
  font-size: 13px;
  font-weight: var(--fw-semibold);
}

.cta-points i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-gold);
  color: #111;
  font-size: 14px;
}

.contact-cta-action {
  display: grid;
  gap: 14px;
  justify-items: stretch;
  border-left: 1px solid var(--color-border);
  padding-left: clamp(24px, 4vw, 44px);
}

.contact-cta-action .btn {
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
}

.cta-phone {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-white);
  color: var(--color-text);
  font-weight: var(--fw-semibold);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-normal), color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.cta-phone:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.particles {
  display: none;
}

@media (max-width: 920px) {
  .contact-cta-inner {
    grid-template-columns: 1fr;
  }

  .contact-cta-action {
    border-left: 0;
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
    padding-left: 0;
  }
}

@media (max-width: 680px) {
  .contact-cta {
    padding: 68px 0;
  }

  .contact-cta::before {
    inset: 14px;
    border-radius: 20px;
  }

  .contact-cta-inner {
    padding: 24px;
    border-radius: 18px;
  }

  .contact-cta-copy h2 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .contact-cta-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .cta-points {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PROFESSIONAL RESPONSIVE FOOTER
========================================================= */

.site-footer {
  padding: 76px 0 0;
  background:
    linear-gradient(180deg, var(--color-white), var(--color-off-white));
  border-top: 1px solid var(--color-border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) 0.75fr 0.85fr minmax(280px, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.footer-brand,
.footer-links,
.footer-contact {
  min-width: 0;
}

.footer-logo {
  width: min(100%, 190px);
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 420px;
  margin-bottom: 22px;
  color: var(--color-text-light);
  font-size: 15px;
  line-height: 1.8;
}

.footer-links h3,
.footer-contact h3 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 12px;
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: var(--fw-bold);
  letter-spacing: 0;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-gold);
}

.footer-links a,
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.45;
  transition: color var(--transition-normal), transform var(--transition-normal);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-gold-dark);
  transform: translateX(4px);
}

.footer-contact a i {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 10px;
  background: rgba(246, 231, 168, 0.22);
  color: var(--color-gold-dark);
  font-size: 18px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.footer-socials a {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-gold-dark);
  box-shadow: var(--shadow-sm);
  font-size: 1.22rem;
  transition: border-color var(--transition-normal), color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.footer-socials a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--color-gold);
  transform: scale(0);
  transition: transform var(--transition-normal);
  border-radius: inherit;
}

.footer-socials a i {
  position: relative;
  z-index: 1;
  line-height: 1;
}

.footer-socials a:hover {
  border-color: var(--color-gold);
  color: #111;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.footer-socials a:hover::before {
  transform: scale(1);
}

.footer-socials a:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.32);
  outline-offset: 3px;
}

.site-footer .newsletter {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  padding: 6px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.site-footer .newsletter input {
  min-width: 0;
  flex: 1;
  border: 0;
  border-radius: 10px;
  padding: 0 10px;
  background: transparent;
  color: var(--color-text);
  outline: 0;
}

.site-footer .newsletter button {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: var(--color-gold);
  color: #111 !important;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 54px;
  border-top: 1px solid var(--color-border);
  padding-block: 22px;
}

.footer-bottom p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom a {
  color: var(--color-text-light);
  font-size: 13px;
  font-weight: var(--fw-medium);
}

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

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-footer {
    padding-top: 56px;
    padding-bottom: 86px;
  }

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

  .footer-logo {
    width: min(100%, 160px);
  }

  .footer-links h3,
  .footer-contact h3 {
    margin-bottom: 16px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 36px;
  }
}

/* =========================================================
   PROFESSIONAL HERO SLIDER POLISH
========================================================= */

.hero {
  min-height: 720px;
  background: var(--color-off-white);
}

.hero-swiper,
.hero-slide {
  height: min(100vh, 820px);
  min-height: 720px;
}

.hero-slide {
  isolation: isolate;
}

.hero-slide img {
  object-position: center right;
  transform: scale(1.02);
}

.hero-slide:nth-child(2) img {
  object-position: center center;
}

.hero-slide:nth-child(3) img {
  object-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 34%, rgba(255, 255, 255, 0.64) 58%, rgba(255, 255, 255, 0.14) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    radial-gradient(circle at 22% 42%, rgba(212, 175, 55, 0.2), transparent 34%);
}

.hero-content {
  justify-content: center;
  align-items: flex-start;
  padding-top: calc(var(--navbar-height) + 36px);
  padding-bottom: 110px;
}

.hero-content::before {
  content: "";
  width: 76px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.28);
}

.hero .eyebrow {
  margin-bottom: 14px;
  color: var(--color-gold-dark);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.hero .eyebrow::before {
  display: none;
}

.hero h1 {
  max-width: 760px;
  color: var(--color-text);
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.04;
  letter-spacing: -1.2px;
}

.hero-copy {
  max-width: 590px;
  margin: 22px 0 30px;
  color: var(--color-text-light);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.75;
}

.hero-actions {
  gap: 14px;
}

.hero-actions .btn {
  min-width: 178px;
  box-shadow: var(--shadow-sm);
}

.hero-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.84);
}

.hero .swiper-button-prev,
.hero .swiper-button-next {
  top: auto;
  right: max(20px, calc((100vw - var(--container-width)) / 2 + 20px));
  bottom: 36px;
  width: 48px;
  height: 48px;
  border-color: var(--color-border);
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-text);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), background var(--transition-normal), color var(--transition-normal);
}

.hero .swiper-button-prev {
  right: max(82px, calc((100vw - var(--container-width)) / 2 + 82px));
  left: auto;
}

.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
  background: var(--color-gold);
  color: #111;
  transform: translateY(-3px);
}

.hero .swiper-pagination {
  right: auto;
  bottom: 48px;
  left: max(20px, calc((100vw - var(--container-width)) / 2 + 20px));
  width: auto;
  text-align: left;
}

.hero .swiper-pagination-bullet {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(31, 31, 31, 0.16);
}

.hero .swiper-pagination-bullet-active {
  width: 54px;
  background: var(--color-gold);
}

.floating-stats {
  right: max(20px, calc((100vw - var(--container-width)) / 2 + 20px));
  bottom: 108px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
}

.floating-stats div {
  min-width: 146px;
  padding: 18px 20px;
}

.floating-stats strong {
  color: var(--color-gold-dark) !important;
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: var(--fw-bold);
  letter-spacing: -0.6px;
}

.floating-stats span {
  color: var(--color-text-light);
  font-size: 12px;
  font-weight: var(--fw-medium);
  line-height: 1.35;
}

.scroll-indicator {
  display: none;
}

@media (max-width: 1180px) {
  .hero h1 {
    max-width: 680px;
    font-size: clamp(40px, 5vw, 64px);
  }

  .floating-stats {
    right: 20px;
  }
}

@media (max-width: 920px) {
  .hero,
  .hero-swiper,
  .hero-slide {
    min-height: 680px;
    height: 680px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 46%, rgba(255, 255, 255, 0.48) 100%),
      radial-gradient(circle at 24% 28%, rgba(212, 175, 55, 0.18), transparent 34%);
  }

  .hero-slide img {
    object-position: center bottom;
  }

  .hero-content {
    justify-content: flex-start;
    padding-top: calc(var(--navbar-height-mobile) + 58px);
    padding-bottom: 190px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(36px, 7vw, 54px);
  }

  .hero-copy {
    max-width: 560px;
    font-size: 16px;
  }

  .floating-stats {
    right: 20px;
    bottom: 74px;
    left: 20px;
    grid-template-columns: repeat(3, 1fr);
  }

  .floating-stats div {
    min-width: 0;
    padding: 14px 12px;
  }

  .floating-stats strong {
    font-size: 24px;
  }

  .hero .swiper-pagination {
    bottom: 26px;
    left: 20px;
  }

  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    bottom: 18px;
  }
}

@media (max-width: 680px) {
  .hero,
  .hero-swiper,
  .hero-slide {
    min-height: 760px;
    height: 760px;
  }

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

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 54%, rgba(255, 255, 255, 0.62) 100%),
      radial-gradient(circle at 22% 22%, rgba(212, 175, 55, 0.18), transparent 32%);
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 230px;
  }

  .hero-content::before {
    width: 54px;
    height: 3px;
    margin-bottom: 18px;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.7px;
  }

  .hero-copy {
    margin: 16px 0 22px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
  }

  .hero-actions .btn {
    min-width: 0;
  }

  .floating-stats {
    bottom: 82px;
    border-radius: 14px;
  }

  .floating-stats div {
    padding: 12px 8px;
  }

  .floating-stats strong {
    font-size: 20px;
  }

  .floating-stats span {
    font-size: 10px;
  }

  .hero .swiper-pagination {
    bottom: 34px;
  }

  .hero .swiper-pagination-bullet {
    width: 24px;
  }

  .hero .swiper-pagination-bullet-active {
    width: 40px;
  }
}

/* =========================================================
   PROFESSIONAL ABOUT PAGE
========================================================= */

.about-hero-pro {
  position: relative;
  overflow: hidden;
  padding: 150px 0 86px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.96) 48%, rgba(246, 231, 168, 0.3) 100%),
    radial-gradient(circle at 78% 16%, rgba(212, 175, 55, 0.18), transparent 34%);
}

.about-hero-pro::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.42), transparent);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.78fr);
  gap: 56px;
  align-items: center;
}

.about-hero-copy h1 {
  max-width: 810px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.04;
  letter-spacing: -1.5px;
}

.about-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.78;
}

.about-hero-actions,
.about-process-list,
.about-division-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-hero-visual {
  position: relative;
  min-height: 560px;
}

.about-hero-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.about-hero-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 250px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.about-hero-card span,
.about-person-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--color-gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.about-hero-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text);
  font-size: 42px;
  line-height: 1;
}

.about-hero-card p {
  font-size: 13px;
  line-height: 1.55;
}

.about-proof-strip {
  padding: 30px 0;
  background: var(--color-white);
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-proof-grid article,
.about-capability-grid article,
.about-values-grid article {
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.about-proof-grid article {
  min-height: 128px;
  padding: 24px;
}

.about-proof-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-gold-dark);
  font-size: 34px;
  line-height: 1;
}

.about-proof-grid span {
  display: block;
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.55;
}

.about-story-section,
.about-capabilities-section,
.about-values-section {
  background: var(--color-section);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.about-story-media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.about-story-copy h2 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(34px, 3.7vw, 56px);
  line-height: 1.1;
}

.about-story-copy p {
  margin-bottom: 18px;
}

.about-process-list {
  margin-top: 28px;
}

.about-process-list span,
.about-division-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
}

.about-process-list i,
.about-capability-grid i,
.about-values-grid i,
.about-team-panel i,
.about-mv-card i {
  color: var(--color-gold-dark);
}

.about-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-mv-card {
  min-height: 430px;
  padding: 42px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.about-mv-card.dark {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(31, 31, 31, 0.96)),
    radial-gradient(circle at 85% 12%, rgba(212, 175, 55, 0.24), transparent 36%);
  color: var(--color-white);
}

.about-mv-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.14);
  font-size: 28px;
}

.about-mv-card h2 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.14;
}

.about-mv-card.dark h2,
.about-mv-card.dark p {
  color: var(--color-white);
}

.about-mv-card.dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.about-capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.about-capability-grid article,
.about-values-grid article {
  padding: 26px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.about-capability-grid article:hover,
.about-values-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-md);
}

.about-capability-grid i,
.about-values-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.12);
  font-size: 23px;
}

.about-capability-grid h3,
.about-values-grid h3,
.about-team-panel h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.about-leadership-section {
  background: var(--color-white);
}

.about-leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.about-person-card,
.about-team-panel {
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.about-person-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px;
}

.about-person-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
}

.about-person-card h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

.about-team-panel {
  grid-column: 1 / -1;
  position: relative;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-flat);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.about-team-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(201, 162, 39, 0.14), transparent 46%),
    radial-gradient(circle at 90% 76%, rgba(0, 0, 0, 0.04), transparent 44%);
  pointer-events: none;
}

.about-team-panel::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(201, 162, 39, 0.85);
  opacity: 0.55;
  pointer-events: none;
}

.about-team-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.75);
  box-shadow: var(--shadow-flat-hover);
}

.about-team-panel i {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  font-size: 40px;
  color: rgba(201, 162, 39, 0.92);
}

.about-team-panel h3 {
  position: relative;
  z-index: 1;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.about-team-panel p {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  max-width: 72ch;
  color: var(--color-text-light);
}

.about-timeline-section {
  background: var(--color-section);
}

.about-timeline-pro {
  position: relative;
  display: grid;
  gap: 18px;
}

.about-timeline-pro article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: stretch;
}

.about-timeline-pro span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 18px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-gold-dark);
  font-size: 20px;
  font-weight: 800;
}

.about-timeline-pro div {
  padding: 26px 30px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.about-timeline-pro h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.about-divisions-section {
  background: var(--color-white);
}

.about-divisions-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
  padding: 44px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.98)),
    radial-gradient(circle at 88% 18%, rgba(212, 175, 55, 0.17), transparent 36%);
  box-shadow: var(--shadow-sm);
}

.about-divisions-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.2vw, 32px);
}

.about-division-tags {
  justify-content: flex-end;
}

.about-division-tags span {
  min-height: 48px;
  padding-inline: 18px;
}

/* Divisions marquee (premium cards) */
.divisions-wall {
    position: relative;
    padding: 18px 14px;
    /* border: 1px solid rgba(0, 0, 0, 0.08); */
    /* border-radius: 22px; */
    /* background: radial-gradient(circle at 12% 18%, rgba(201, 162, 39, 0.14), transparent 45%), radial-gradient(circle at 88% 70%, rgba(0, 0, 0, 0.04), transparent 45%), rgba(255, 255, 255, 0.88); */
    /* box-shadow: var(--shadow-flat); */
    display: grid;
    gap: 14px;
    overflow: hidden;
}

.division-row {
  position: relative;
}

.about-division-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 6px 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: divisionMarquee 22s linear infinite;
  will-change: transform;
}

.division-row[data-direction="right"] .marquee-track {
  animation-name: divisionMarqueeRight;
}

.division-row:nth-child(1) .marquee-track { animation-duration: 22s; }
.division-row:nth-child(2) .marquee-track { animation-duration: 26s; }
.division-row:nth-child(3) .marquee-track { animation-duration: 24s; }

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

.marquee-group {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

.division-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* min-height: 50px; */
  /* padding: 0 18px; */
  /* border: 1px solid rgba(0, 0, 0, 0.12); */
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-flat);
  transform: translateY(0) skewX(0deg);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
  width:100px;
}

.division-card:hover {
  transform: translateY(-6px) skewX(-3deg);
  border-color: rgba(201, 162, 39, 0.9);
  box-shadow: var(--shadow-flat-hover);
}

.division-card:focus-visible {
  outline: 0;
  border-color: rgba(201, 162, 39, 0.95);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.14), var(--shadow-flat-hover);
}

@keyframes divisionMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes divisionMarqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 1180px) {
  .about-capability-grid,
  .about-values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .about-hero-grid,
  .about-story-grid,
  .about-mv-grid,
  .about-divisions-panel {
    grid-template-columns: 1fr;
  }

  .about-hero-pro {
    padding-top: 124px;
  }

  .about-hero-visual,
  .about-hero-visual img,
  .about-story-media img {
    min-height: 0;
    height: 440px;
  }

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

  .about-leadership-grid {
    grid-template-columns: 1fr;
  }

  .about-division-tags {
    justify-content: flex-start;
  }

  /* Keep marquee animation alive on tablet & mobile — only soften the mask */
  .about-division-marquee {
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }

  /* Slightly slower on smaller screens so cards are readable */
  .marquee-track {
    animation-duration: 18s !important;
    flex-wrap: nowrap;
    width: max-content;
  }

  /* Keep duplicate group visible — it's required for seamless loop */
  .marquee-group[aria-hidden="true"] {
    display: flex;
  }

  .marquee-group {
    flex-wrap: nowrap;
  }

  /* Slightly smaller cards on tablet */
  .division-card {
    width: 86px;
  }

  .divisions-wall {
    padding: 16px;
    gap: 12px;
  }
}

@media (max-width: 680px) {
  .about-hero-pro {
    padding: 104px 0 58px;
  }

  .about-hero-copy h1 {
    font-size: clamp(34px, 10vw, 46px);
    letter-spacing: -0.8px;
  }

  .about-hero-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.68;
  }

  .about-hero-actions .btn {
    width: 100%;
  }

  .about-hero-visual img {
    height: 360px;
    border-radius: 18px;
  }

  .about-hero-card {
    right: 14px;
    bottom: 14px;
    max-width: 210px;
    padding: 16px;
    border-radius: 16px;
  }

  .about-hero-card strong {
    font-size: 32px;
  }

  .about-proof-grid,
  .about-capability-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-story-media img {
    height: 340px;
    border-radius: 18px;
  }

  .about-mv-card,
  .about-divisions-panel {
    min-height: 0;
    padding: 26px;
    border-radius: 18px;
  }

  .about-person-card {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 18px;
  }

  .about-person-card img {
    height: 300px;
  }

  .about-team-panel {
    padding: 24px;
    border-radius: 18px;
  }

  .about-timeline-pro article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-timeline-pro span {
    justify-content: flex-start;
    min-height: 54px;
    padding: 0 18px;
  }

  .about-timeline-pro div {
    padding: 22px;
  }

  /* Marquee on small phones — keep animation, shrink cards */
  .division-card {
    width: 72px;
    border-radius: 12px;
  }

  .marquee-track {
    gap: 10px;
    animation-duration: 14s !important;
  }

  .marquee-group {
    gap: 10px;
    padding-right: 10px;
  }

  /* Narrower fade edges on small screens */
  .about-division-marquee {
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    padding: 4px 0;
  }
}

/* =========================================================
   RESPONSIVE RIGHT DRAWER NAVBAR
========================================================= */

.nav-menu > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-menu > a i,
.mobile-menu-head,
.mobile-menu-bottom {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--color-text);
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(17, 17, 17, 0.42);
    backdrop-filter: blur(4px);
  }

  .site-header {
    z-index: 1001;
  }

  .menu-toggle {
    position: relative;
    z-index: 1003;
    border: 0;
    background: var(--color-white);
    color: var(--color-text);
    box-shadow: none;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    z-index: 1002;
    display: flex;
    width: min(88vw, 380px);
    height: 100dvh;
    padding: 22px 18px 148px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    border: 0;
    border-left: 1px solid var(--color-border);
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 250, 250, 0.98)),
      radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.18), transparent 34%);
    box-shadow: -18px 0 42px rgba(0, 0, 0, 0.16);
    opacity: 1;
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.38s ease, visibility 0.38s ease;
  }

  .nav-menu.active {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-menu-head {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-right: 54px;
    /* border-bottom: 1px solid var(--color-border); */
  }

  .mobile-menu-head img {
    width: 132px;
    height: auto;
    object-fit: contain;
  }

  .mobile-menu-head span {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
  }

  .nav-menu > a {
    min-height: 54px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-bottom: 0;
    border-radius: 14px;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 700;
    transition: background var(--transition-normal), border-color var(--transition-normal), color var(--transition-normal), transform var(--transition-normal);
  }

  .nav-menu > a::after {
    display: none;
  }

  .nav-menu > a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--color-gold-dark);
    font-size: 20px;
  }

  .nav-menu > a:hover,
  .nav-menu > a:focus-visible {
    border-color: rgba(212, 175, 55, 0.35);
    background: var(--color-white);
    color: var(--color-gold-dark);
    transform: translateX(-3px);
    box-shadow: var(--shadow-sm);
  }

  .mobile-menu-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    display: grid;
    width: min(88vw, 380px);
    gap: 14px;
    padding: 18px;
    border-top: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(16px);
  }

  .mobile-menu-socials {
    display: flex;
    gap: 10px;
  }

  .mobile-menu-socials a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-text);
    font-size: 20px;
    box-shadow: var(--shadow-sm);
  }

  .mobile-menu-socials a:hover {
    border-color: rgba(212, 175, 55, 0.48);
    background: var(--color-gold);
    color: #111;
  }

  .mobile-menu-bottom p {
    
    /* align-items: center;
    gap: 5px;
    margin: 0;
    color: var(--color-text-light);
    font-size: 12px;
    line-height: 1.45; */
  }

  .mobile-menu-bottom p i {
    color: var(--color-gold-dark);
    font-size: 15px;
  }

  .mobile-menu-bottom p a {
    color: var(--color-gold-dark);
    font-weight: 800;
  }
}

/* Mobile navbar professional polish */
@media (max-width: 768px) {
  .site-header.menu-active {
    background: transparent;
    box-shadow: none;
  }

  body.menu-open::after {
    background: rgba(18, 18, 18, 0.5);
    backdrop-filter: blur(5px);
  }

  .site-header.menu-active .menu-toggle {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-color: rgba(0, 0, 0, 0.08);
    background: #ffffff;
    color: var(--color-text);
    font-size: 1.45rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  }

  .nav-menu {
    width: min(82vw, 356px);
    padding: 22px 18px 128px;
    background:
      linear-gradient(180deg, #ffffff 0%, #fbfbfb 72%, #f8f8f8 100%),
      radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.1), transparent 34%);
  }

  .mobile-menu-head {
    min-height: 86px;
    justify-content: flex-start;
    margin-bottom: 18px;
    /* padding: 0 54px 18px 0; */
  }

  .mobile-menu-head img {
    width: 174px;
    max-width: 72%;
  }

  .mobile-menu-head span {
    display: none;
  }

  .nav-menu > a {
    min-height: 52px;
    padding: 0 12px;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 14px;
    color: #232323;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
  }

  .nav-menu > a i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 13px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold-dark);
    font-size: 20px;
  }

  .nav-menu > a span {
    line-height: 1.2;
  }

  .nav-menu > a:hover,
  .nav-menu > a:focus-visible {
    transform: translateX(-2px);
    border-color: rgba(212, 175, 55, 0.24);
    background: #ffffff;
    color: var(--color-text);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  }

  .mobile-menu-bottom {
    width: min(82vw, 356px);
    gap: 12px;
    padding: 14px 18px 16px;
    background: rgba(255, 255, 255, 0.98);
  }

  .mobile-menu-socials {
    justify-content: flex-start;
  }

  .mobile-menu-socials a {
    width: 38px;
    height: 38px;
    border-color: rgba(0, 0, 0, 0.08);
    color: var(--color-text);
    font-size: 18px;
    box-shadow: none;
  }

  .mobile-menu-bottom p {
    /* display: flex !important;
    width: 100%;
    color: var(--color-muted);
    font-size: 11px;
    font-weight: 600; */
  }
}

@media (max-width: 430px) {
  .nav-menu,
  .mobile-menu-bottom {
    width: min(86vw, 340px);
  }

  .mobile-menu-head img {
    width: 156px;
  }
}

/* Mobile side navbar reference style */
.mobile-share-link,
.mobile-menu-tools {
  display: none;
}

@media (min-width: 769px) {
  .mobile-share-link {
    display: none !important;
  }
}

@media (max-width: 768px) {
  body.menu-open::after {
    background: rgba(15, 15, 15, 0.38);
    backdrop-filter: blur(5px);
  }

  .site-header.menu-active {
    background: transparent;
    box-shadow: none;
  }

  .site-header.menu-active .menu-toggle {
    position: fixed;
    top: 17px;
    right: 16px;
    left: auto;
    z-index: 1004;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #111111;
    box-shadow: none;
    font-size: 30px;
  }

  .site-header.menu-active .menu-toggle i {
    line-height: 1;
  }

  .nav-menu {
    top: 0;
    right: 0;
    left: auto;
    width: min(82vw, 356px);
    height: 100dvh;
    padding: 0 0 214px;
    gap: 0;
    border: 0;
    border-left: 1px solid #e5e5e5;
    border-radius: 0;
    background: #ffffff;
    box-shadow: -18px 0 42px rgba(0, 0, 0, 0.12);
    transform: translateX(105%);
    transition: transform 0.34s ease, visibility 0.34s ease;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .mobile-menu-head {
    display: block;
    min-height: 28px;
    margin: 0 0 18px;
    padding: 0 72px 0 28px;
    /* border-bottom: 1px solid #e9e9e9; */
  }

  .mobile-menu-head img,
  .mobile-menu-head span {
    display: none;
  }

  .nav-menu > a {
    width: 100%;
    min-height: 58px;
    padding: 0 30px;
    gap: 22px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #555555;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    box-shadow: none;
  }

  .nav-menu > a:hover,
  .nav-menu > a:focus-visible {
    transform: none;
    border: 0;
    background: transparent;
    color: #222222;
    box-shadow: none;
  }

  .nav-menu > a::after {
    display: none;
  }

  .nav-menu > a i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border: 0;
    border-radius: 50%;
    background: #e2f1ff;
    color: #4aa6ff;
    font-size: 21px;
  }

  .nav-menu > a span {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    line-height: 1.2;
    margin-left:1rem;
  }

  .nav-menu > a:nth-of-type(2) i {
    background: #fff0db;
    color: #f2aa45;
  }

  .nav-menu > a:nth-of-type(3) i {
    background: #dff6f1;
    color: #22aaa0;
  }

  .nav-menu > a:nth-of-type(4) i {
    background: #edf0ff;
    color: #8aa8d9;
  }

  .nav-menu > a:nth-of-type(5) i {
    background: #e7f6dd;
    color: #25a86b;
  }

  .nav-menu > a:nth-of-type(6) i {
    background: #fff7dc;
    color: #e7ad21;
  }

  .nav-menu > a:nth-of-type(7),
  .nav-menu > a:nth-of-type(7) span {
    color: #ff5757;
  }

  .nav-menu > a:nth-of-type(7) i {
    background: #ffe6e6;
    color: #ff5757;
  }

  .mobile-share-link {
    display: inline-flex;
  }

  .mobile-menu-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: auto;
    display: grid;
    width: min(82vw, 356px);
    gap: 0;
    padding: 0;
    border-top: 1px solid #e9e9e9;
    background: #ffffff;
    box-shadow: none;
    backdrop-filter: none;
  }

  .mobile-menu-tools {
    display: grid;
    grid-template-columns: 1fr 42px 42px;
    min-height: 66px;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    border-bottom: 1px solid #e9e9e9;
  }

  .mobile-menu-tools strong {
    color: #555555;
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-menu-tools a,
  .mobile-menu-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4b4b4b;
  }

  .mobile-menu-tools a {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .mobile-menu-socials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 62px;
    gap: 0;
    align-items: center;
    justify-items: center;
    padding: 0 18px;
    border-bottom: 1px solid #e9e9e9;
  }

   .bx {
      font-size: 22px;
    }
  .mobile-menu-socials a {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 19px;
  }

  .mobile-menu-socials a:hover {
    background: transparent;
    color: var(--color-gold-dark);
  }

  .mobile-menu-bottom p {
    /* display: flex !important;
    min-height: 68px;
    align-items: center;
    gap: 5px;
    padding: 12px 30px;
    color: #555555;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.5;
    text-transform: uppercase; */
  }

  .mobile-menu-bottom p i {
    color: #ff5757;
    font-size: 14px;
  }

  .mobile-menu-bottom p span {
    width: 100%;
  }

  .mobile-menu-bottom p a {
            color: #ff5757;
        font-weight: 900;
        line-height: 1;
  }
}

@media (max-width: 430px) {
  .site-header.menu-active .menu-toggle {
    right: 14px;
    left: auto;
  }

  .nav-menu,
  .mobile-menu-bottom {
    width: min(86vw, 340px);
  }

  .nav-menu > a {
    padding-inline: 26px;
    gap: 20px;
  }

  .mobile-menu-tools,
  .mobile-menu-bottom p {
  text-align: center;
        font-size: 14px;
        margin-top: 20px;
  }
}

/* =========================================================
   FOOTER PROFESSIONAL REFINEMENT
========================================================= */

.cursor,
.cursor-dot {
  display: none !important;
}

.site-footer {
  padding: 72px 0 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border-top: 1px solid var(--color-border-light);
}

.footer-grid {
  grid-template-columns: minmax(300px, 1.05fr) minmax(140px, 0.52fr) minmax(190px, 0.64fr) minmax(300px, 0.95fr);
  gap: clamp(34px, 5vw, 72px);
  max-width: 1240px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 390px;
  margin-bottom: 28px;
  color: #4f5661;
  font-size: 16px;
  line-height: 1.75;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 24px;
  padding-bottom: 14px;
  color: #1e1e1e;
  font-size: 18px;
  line-height: 1.2;
}

.footer-links h3::after,
.footer-contact h3::after {
  width: 42px;
  height: 2px;
}

.footer-links a {
  display: block;
  width: max-content;
  margin-bottom: 14px;
  color: #4f5661;
  font-size: 15px;
  line-height: 1.35;
}

.footer-contact {
  max-width: 360px;
}

.footer-contact a {
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  margin-bottom: 14px;
  color: #4f5661;
  font-size: 15px;
  line-height: 1.45;
}

.footer-contact a:hover {
  transform: translateX(2px);
}

.footer-contact a i {
  width: 42px;
  height: 42px;
  border-color: rgba(212, 175, 55, 0.28);
  border-radius: 12px;
  background: rgba(246, 231, 168, 0.18);
  color: var(--color-gold-dark);
  font-size: 20px;
}

.footer-contact a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-socials {
  gap: 10px;
  margin-top: 0;
}

.footer-socials a {
  display: inline-grid !important;
  place-items: center !important;
  width: 46px;
  height: 46px;
  margin: 0 !important;
  border-color: rgba(212, 175, 55, 0.34);
  background: #ffffff;
  color: #4f5661 !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.footer-socials a:hover {
  color: #111111 !important;
}

.footer-socials a i {
  display: block;
  line-height: 1;
}

.site-footer .newsletter {
  height: 56px;
  margin-top: 22px;
  padding: 6px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.site-footer .newsletter input {
  height: 100%;
  padding: 0 14px;
  font-size: 15px;
}

.site-footer .newsletter button {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 22px;
}

.footer-bottom {
  max-width: 1240px;
  margin-top: 54px;
  padding-block: 20px;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 54px;
  }

  .footer-contact {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .site-footer {
    padding-top: 52px;
  }

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

  .footer-logo {
    width: 140px;
  }

  .footer-brand p {
    max-width: none;
    font-size: 15px;
  }

  .footer-links a {
    width: 100%;
  }

  .footer-contact a {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .footer-contact a i {
    width: 40px;
    height: 40px;
  }
}

/* =========================================================
   GALLERY PROFESSIONAL REFINEMENT
========================================================= */

#gallery {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

#gallery .section-heading {
  display: block;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto 34px;
  text-align: left;
}

#gallery .eyebrow {
  justify-content: flex-start;
  margin: 0 0 14px;
}

#gallery .section-heading h2 {
  max-width: 820px;
  margin-inline: 0;
  font-size: clamp(32px, 3.35vw, 48px);
  line-height: 1.16;
  letter-spacing: -0.6px;
}

.masonry-gallery {
  display: grid;
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  grid-template-columns: minmax(420px, 1.35fr) repeat(2, minmax(220px, 0.65fr));
  grid-auto-rows: 188px;
  gap: 20px;
  align-items: stretch;
}

.masonry-gallery button {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(20, 20, 20, 0.08);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.masonry-gallery button:first-child {
  grid-column: 1;
  grid-row: span 2;
}

.masonry-gallery button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0.86;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.masonry-gallery button::after {
  display: none;
}

.gallery-caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: grid;
  gap: 6px;
  color: #ffffff;
  text-align: left;
  pointer-events: none;
  transform: translateY(0);
  transition: transform var(--transition-normal);
}

.gallery-caption strong {
  max-width: 92%;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.gallery-caption small {
  width: max-content;
  max-width: 100%;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  backdrop-filter: blur(10px);
}

.masonry-gallery button:first-child .gallery-caption strong {
  font-size: 22px;
}

.masonry-gallery img {
  object-position: center;
  filter: saturate(0.98) contrast(1.02);
}

.masonry-gallery button:first-child img {
  object-position: 54% center;
}

.masonry-gallery button:nth-child(5) img {
  object-position: center 18%;
}

.masonry-gallery button:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 22px 44px rgba(20, 20, 20, 0.14);
}

.masonry-gallery button:hover::before {
  opacity: 1;
}

.masonry-gallery button:hover::after {
  transform: none;
}

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

@media (max-width: 1024px) {
  .masonry-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 240px;
  }

  .masonry-gallery button:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 680px) {
  #gallery .section-heading {
    display: block;
    margin-bottom: 26px;
  }

  #gallery .eyebrow {
    margin-top: 0;
  }

  .masonry-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }

  .masonry-gallery button:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-caption strong,
  .masonry-gallery button:first-child .gallery-caption strong {
    font-size: 17px;
  }
}

/* =========================================================
   PROFESSIONAL LEADERSHIP SLIDER
========================================================= */

.testimonial-swiper {
  width: min(100%, 1040px);
  max-width: 1040px;
  margin-inline: auto;
  padding: 8px 0 62px;
  overflow: hidden;
}

.testimonial-swiper .swiper-wrapper {
  align-items: stretch;
}

.testimonial-swiper .swiper-slide {
  height: auto;
  opacity: 0 !important;
  pointer-events: none;
}

.testimonial-swiper .swiper-slide-active {
  opacity: 1 !important;
  pointer-events: auto;
}

.testimonial-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  min-height: 390px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, #ffffff 0%, #fbfbfb 68%, rgba(246, 231, 168, 0.24) 100%);
  box-shadow: 0 22px 54px rgba(20, 20, 20, 0.08);
  text-align: left;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 32px;
  right: 40px;
  color: rgba(212, 175, 55, 0.12);
  font-family: "Playfair Display", serif;
  font-size: 150px;
  line-height: 0.8;
  pointer-events: none;
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  margin: 0;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
}

.testimonial-card > :not(img) {
  position: relative;
  z-index: 1;
}

.testimonial-card .stars,
.testimonial-card p,
.testimonial-card h3 {
  grid-column: 2;
}

.testimonial-card .stars {
  align-self: end;
  margin: 0 56px 22px;
  color: var(--color-gold-dark) !important;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-card p {
  max-width: 680px;
  margin: 0 56px;
  color: #202020;
  font-family: var(--font-primary);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.7px;
}

.testimonial-card h3 {
  align-self: start;
  margin: 24px 56px 0;
  color: var(--color-text-light);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.testimonial-swiper .swiper-pagination {
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonial-swiper .swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  margin: 0 !important;
  border-radius: 999px;
  background: #d8d8d8;
  opacity: 1;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  width: 54px;
  background: var(--color-gold);
}

@media (max-width: 900px) {
  .testimonial-card {
    grid-template-columns: 190px minmax(0, 1fr);
    min-height: 340px;
  }

  .testimonial-card img {
    min-height: 340px;
  }

  .testimonial-card .stars,
  .testimonial-card p,
  .testimonial-card h3 {
    margin-right: 34px;
    margin-left: 34px;
  }

  .testimonial-card p {
    font-size: clamp(22px, 4vw, 30px);
  }
}

@media (max-width: 680px) {
  .testimonial-swiper {
    padding-bottom: 54px;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .testimonial-card img {
    height: 300px;
    min-height: 0;
  }

  .testimonial-card .stars,
  .testimonial-card p,
  .testimonial-card h3 {
    grid-column: 1;
    margin-right: 24px;
    margin-left: 24px;
  }

  .testimonial-card .stars {
    margin-top: 28px;
    margin-bottom: 18px;
  }

  .testimonial-card p {
    font-size: 22px;
  }

  .testimonial-card h3 {
    margin-bottom: 30px;
  }
}

/* Two-up leadership slider refinement */
.testimonial-swiper {
  width: min(100%, 1180px);
  max-width: 1180px;
  padding: 6px 0 58px;
}

.testimonial-swiper .swiper-slide,
.testimonial-swiper .swiper-slide-active,
.testimonial-swiper .swiper-slide-next {
  height: auto;
  opacity: 1 !important;
  pointer-events: auto;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 620px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(20, 20, 20, 0.08);
}

.testimonial-card::before {
  top: 276px;
  right: 28px;
  font-size: 96px;
}

.testimonial-card img {
  width: 100%;
  height: 340px;
  min-height: 0;
  border-radius: 22px 22px 0 0;
  object-fit: contain;
  object-position: center bottom;
  background:
    linear-gradient(135deg, rgba(246, 231, 168, 0.18), rgba(255, 255, 255, 0.72)),
    #f6f6f3;
  padding: 10px;
}

.testimonial-card img[src*="murtaza"] {
  object-fit: cover;
  object-position: center 36%;
  padding: 0;
}

.testimonial-card img[src*="quaidjohar"] {
  object-fit: contain;
  object-position: center bottom;
  padding: 12px 14px 0;
}

.testimonial-card .stars,
.testimonial-card p,
.testimonial-card h3 {
  grid-column: 1;
  margin-right: 34px;
  margin-left: 34px;
}

.testimonial-card .stars {
  align-self: start;
  margin-top: 34px;
  margin-bottom: 18px;
  font-size: 16px;
}

.testimonial-card p {
  max-width: none;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.26;
  letter-spacing: -0.5px;
}

.testimonial-card h3 {
  align-self: end;
  width: fit-content;
  max-width: calc(100% - 68px);
  margin-top: 26px;
  margin-bottom: 34px;
  padding: 12px 16px 12px 18px;
  border-left: 3px solid var(--color-gold);
  border-radius: 0 14px 14px 0;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.14), rgba(246, 231, 168, 0.18));
  color: #202020;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.1);
}

.testimonial-swiper .swiper-pagination {
  bottom: 10px;
}

@media (max-width: 899px) {
  .testimonial-card {
    min-height: 0;
  }

  .testimonial-card img {
    height: 320px;
  }
}

@media (max-width: 680px) {
  .testimonial-card .stars,
  .testimonial-card p,
  .testimonial-card h3 {
    margin-right: 24px;
    margin-left: 24px;
  }

  .testimonial-card p {
    font-size: 22px;
  }

  .testimonial-card h3 {
    max-width: calc(100% - 48px);
    padding: 11px 14px;
  }
}

/* =========================================================
   PREMIUM ABOUT PREVIEW SECTION
========================================================= */

.about-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.about-section::before {
  content: "";
  position: absolute;
  top: 16%;
  right: -12%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 68%);
  pointer-events: none;
}

.about-section .split-grid {
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1fr);
  gap: clamp(44px, 5vw, 64px);
  align-items: start;
  max-width: 1240px;
}

.about-section .parallax-card {
  position: relative;
  min-height: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-section .parallax-card::before {
  content: "";
  position: absolute;
  inset: 24px -18px -18px 24px;
  z-index: 0;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 28px;
  background: rgba(246, 231, 168, 0.16);
}

.about-section .parallax-card::after {
  content: "10+ Years MBVV Expertise";
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.about-section .parallax-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  min-height: 0;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 28px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 24px 56px rgba(20, 20, 20, 0.12);
}

.about-section .section-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-top: 0;
}

.about-section .section-copy h2 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(36px, 3.65vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.8px;
}

.about-section .section-copy > p:not(.eyebrow):not(.signature) {
  max-width: 610px;
  color: #4f5661;
  font-size: 17px;
  line-height: 1.78;
}

.about-section .counter-grid {
  display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    max-width: 610px;
    margin: 26px 0 20px;
    text-align: center;
    line-height: 1.2;
}

.about-section .counter-grid div {
  min-height: 112px;
  padding: 22px 0px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.05);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.about-section .counter-grid div:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.38);
  box-shadow: 0 18px 36px rgba(20, 20, 20, 0.08);
}

.about-section .counter-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-gold-dark);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1;
}

.about-section .counter-grid span {
  color: #5f5f5f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.about-section .signature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--color-gold-dark);
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.about-section .signature::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-gold);
}

.about-action-row {
  display: flex;
  width: 100%;
  max-width: 610px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 0;
  padding: 14px 16px 14px 18px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 231, 168, 0.14));
  box-shadow: 0 16px 34px rgba(20, 20, 20, 0.06);
}

.about-section .btn {
  min-width: 180px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #111111;
  box-shadow: 0 16px 30px rgba(212, 175, 55, 0.22);
}

.about-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(212, 175, 55, 0.28);
}

@media (min-width: 1025px) {
  .about-section .section-copy {
    align-self: center;
  }
}

@media (max-width: 1024px) {
  .about-section .split-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-section .section-copy {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .about-section .parallax-card::before {
    inset: 14px -10px -10px 14px;
    border-radius: 22px;
  }

  .about-section .parallax-card img {
    min-height: 390px;
    border-radius: 22px;
  }

  .about-section .parallax-card::after {
    right: 14px;
    bottom: 14px;
    font-size: 11px;
  }

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

  .about-section .signature {
    font-size: 21px;
  }

  .about-section .signature::before {
    width: 28px;
  }

  .about-action-row {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  .about-section .btn {
    width: 100%;
  }

  .about-section .section-copy h2 {
    font-size: clamp(32px, 9vw, 44px);
  }



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

  .vertical-grid > article > h3{font-size: 0.7rem;}
  .vertical-grid article {
            position: relative;
        display: flex;
        min-height: 120px;
        flex-direction: column;
        justify-content: flex-end;
        overflow: hidden;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 14px;
        background: var(--bg);
        isolation: isolate;
        transition: transform 0.35s ease, border-color 0.35s ease;
        text-align: center;
        background-color: white;
}



}

/* =========================================================
   PREMIUM CONTACT MAP SECTION
========================================================= */

.contact-map-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.contact-map-section::before {
  content: "";
  position: absolute;
  right: -140px;
  top: 60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 68%);
  pointer-events: none;
}

.contact-map-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.contact-map-section .section-heading h2 {
  max-width: 780px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.14;
  letter-spacing: -0.8px;
}

.contact-map-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(20, 20, 20, 0.1);
}

.contact-map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.72) 30%, rgba(255, 255, 255, 0.05) 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.02));
  pointer-events: none;
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  filter: saturate(0.9) contrast(1.03);
}

.map-info-card {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 2;
  width: min(390px, calc(100% - 68px));
  padding: 28px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 46px rgba(20, 20, 20, 0.12);
  backdrop-filter: blur(18px);
}

.map-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.map-info-card h3 {
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 26px;
  line-height: 1.18;
}

.map-info-card p {
  margin-bottom: 20px;
  color: #4f5661;
  font-size: 14px;
  line-height: 1.7;
}

.map-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.map-info-grid span {
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #ffffff;
  color: #5f5f5f;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.map-info-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-gold-dark);
  font-size: 22px;
  line-height: 1;
}

.map-info-card > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #111111;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(212, 175, 55, 0.24);
}

.map-info-card > a:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .contact-map-section .section-heading {
    grid-template-columns: 1fr;
  }

  .contact-map-card,
  .contact-map-card iframe {
    min-height: 640px;
    height: 640px;
  }

  .contact-map-card::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0.04) 72%);
  }
}

@media (max-width: 620px) {
  .contact-map-section {
    padding: 64px 0;
  }

  .contact-map-card {
    border-radius: 22px;
  }

  .map-info-card {
    top: 18px;
    left: 18px;
    width: calc(100% - 36px);
    padding: 20px;
    border-radius: 18px;
  }

  .map-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact map final clean layout */
.contact-map-section {
  padding: 82px 0 92px;
  background: #ffffff;
}

.contact-map-section::before {
  display: none;
}

.contact-map-section .section-heading {
  display: block;
  margin: 0 auto 30px;
  text-align: left;
}

.contact-map-section .section-heading h2 {
  max-width: 760px;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.14;
  letter-spacing: -0.6px;
}

.contact-map-card {
  min-height: 500px;
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(20, 20, 20, 0.09);
  padding: 1rem;
}

.contact-map-card::before {
  display: none;
}

.contact-map-card iframe {
  height: 500px;
  filter: saturate(0.96) contrast(1.01);
      border-radius: 0.5rem;
}

.map-info-card {
  top: auto;
  bottom: 24px;
  left: 24px;
  width: min(360px, calc(100% - 48px));
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(20, 20, 20, 0.14);
}

.map-info-card h3 {
  font-size: 22px;
}

.map-info-card p {
  margin-bottom: 16px;
  font-size: 13px;
}

.map-info-grid {
  margin-bottom: 16px;
}

.map-info-grid span {
  padding: 12px;
}

.map-info-card > a {
  min-height: 42px;
  padding: 0 16px;
}

@media (max-width: 900px) {
  .contact-map-card,
  .contact-map-card iframe {
    min-height: 560px;
    height: 560px;
  }
}

@media (max-width: 620px) {
  .contact-map-section {
    padding: 58px 0 68px;
  }

  .contact-map-card,
  .contact-map-card iframe {
    min-height: 620px;
    height: 620px;
  }

  .map-info-card {
    top: 16px;
    bottom: auto;
    left: 16px;
    width: calc(100% - 32px);
  }
}

/* =========================================================
   PROJECT DETAIL CLEAN PREMIUM UI
========================================================= */

.detail-hero {
  min-height: 620px;
  height: 72vh;
  background: #f8f8f8;
}

.detail-swiper,
.detail-swiper .swiper-slide {
  height: 100%;
}

.detail-swiper img {
  object-position: center 44%;
  filter: saturate(0.98) contrast(1.02);
}

.detail-hero::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 32%, rgba(255, 255, 255, 0.18) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.54) 100%);
}

.detail-title {
  bottom: 76px;
  left: max(28px, calc((100vw - var(--container-width)) / 2 + var(--container-padding)));
  width: min(100% - 56px, 680px);
  padding: 34px 0;
}

.detail-title .eyebrow {
  margin-bottom: 14px;
}

.detail-title h1 {
  max-width: 660px;
  color: #171717;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: 1.02;
  letter-spacing: -1.2px;
}

.detail-title p:last-child {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-gold-dark);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.08);
  backdrop-filter: blur(12px);
}

.detail-swiper .swiper-pagination {
  bottom: 34px;
}

.detail-layout {
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 64px);
  max-width: 1240px;
}

.sticky-panel {
  top: 108px;
  padding: 28px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(20, 20, 20, 0.08);
}

.sticky-panel h2 {
  margin-bottom: 22px;
  color: var(--color-text);
  font-size: 28px;
  line-height: 1.15;
}

.sticky-panel p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #5f5f5f;
  font-size: 14px;
  font-weight: 700;
}

.sticky-panel p i {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-gold-dark);
  font-size: 17px;
}

.sticky-panel .btn {
  width: 100%;
  margin-top: 18px;
  border-radius: 12px;
}

.detail-content {
  max-width: 820px;
}

.detail-content > .eyebrow {
  margin-bottom: 14px;
}

.detail-content > h2 {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--color-text);
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.16;
  letter-spacing: -0.7px;
}

.detail-content > p {
  max-width: 780px;
  color: #56606a;
  font-size: 16px;
  line-height: 1.75;
}

.tabs {
  margin-top: 34px;
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(20, 20, 20, 0.07);
}

.tab-buttons {
  gap: 8px;
  margin-bottom: 22px;
  padding: 6px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fafafa;
  width: fit-content;
}

.tab-buttons button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #505050;
  font-size: 14px;
}

.tab-buttons button.active {
  background: var(--color-gold);
  color: #111111;
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.22);
}

.amenity-grid.compact {
  gap: 16px;
}

.amenity-grid.compact article {
  min-height: 120px;
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
}

.amenity-grid.compact article i {
  margin-bottom: 12px;
  font-size: 30px;
}

.amenity-grid.compact article span {
  color: #2a2a2a;
  font-weight: 900;
}

.inquiry-form {
  margin-top: 34px;
  padding: 28px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(20, 20, 20, 0.08);
}

.inquiry-form h2 {
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
}

.inquiry-form input,
.inquiry-form textarea {
  min-height: 56px;
  border-radius: 14px;
  background: #ffffff;
  font-size: 14px;
}

.inquiry-form textarea {
  min-height: 132px;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: rgba(212, 175, 55, 0.52);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
  outline: 0;
}

.inquiry-form .btn {
  height: 54px;
  border-radius: 12px;
}

.detail-content .map-frame {
  margin-top: 34px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 16px 38px rgba(20, 20, 20, 0.08);
}

.detail-content .map-frame,
.detail-content .map-frame iframe {
  height: 360px;
  border-radius: 22px;
  filter: saturate(0.92) contrast(1.02);
}

@media (max-width: 920px) {
  .detail-hero {
    min-height: 560px;
    height: 62vh;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .sticky-panel {
    position: relative;
    top: auto;
  }

  .detail-content {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .detail-hero {
    min-height: 520px;
  }

  .detail-title {
    bottom: 54px;
    left: 20px;
    width: calc(100% - 40px);
  }

  .detail-title h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .tabs,
  .inquiry-form,
  .sticky-panel {
    padding: 20px;
    border-radius: 18px;
  }

  .tab-buttons {
    width: 100%;
    border-radius: 16px;
  }

  .tab-buttons button {
    flex: 1 1 auto;
    padding-inline: 12px;
  }

  .amenity-grid.compact {
    grid-template-columns: 1fr 1fr;
  }
}

/* Premium project inquiry form */
.inquiry-form {
  position: relative;
  overflow: hidden;
  gap: 16px;
  padding: 34px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background:
    linear-gradient(135deg, #ffffff 0%, #ffffff 62%, rgba(246, 231, 168, 0.12) 100%);
}

.inquiry-form::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-gold), var(--color-gold-dark));
}

.form-head {
  grid-column: 1 / -1;
  max-width: 720px;
  margin-bottom: 6px;
}

.form-head span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--color-gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-head h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.7px;
}

.form-head p {
  max-width: 680px;
  color: #5f6670;
  font-size: 15px;
  line-height: 1.65;
}

.inquiry-form input,
.inquiry-form textarea {
  border-color: #e7e7e7;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.inquiry-form textarea {
  min-height: 118px;
}

.inquiry-form .btn {
  display: inline-flex;
  width: fit-content;
  min-width: 210px;
  justify-self: end;
  gap: 8px;
  padding-inline: 28px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  box-shadow: 0 16px 32px rgba(212, 175, 55, 0.24);
}

.inquiry-form .btn i {
  font-size: 18px;
}

@media (max-width: 680px) {
  .inquiry-form {
    gap: 12px;
    padding: 24px;
  }

  .inquiry-form .btn {
    width: 100%;
    justify-self: stretch;
  }
}

/* Premium project tab module */
.project-tabs {
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(135deg, #ffffff 0%, #ffffff 70%, rgba(246, 231, 168, 0.12) 100%);
  box-shadow: 0 18px 44px rgba(20, 20, 20, 0.08);
}

.project-tabs .tab-buttons {
  display: inline-flex;
  width: auto;
  margin: 0 0 18px;
  padding: 5px;
  border-radius: 14px;
  background: #f7f7f7;
}

.project-tabs .tab-buttons button {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 11px;
  font-size: 14px;
}

.project-tabs .tab-buttons button.active {
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.18);
}

.project-tabs .tab-panel {
  overflow: hidden;
  border-radius: 20px;
}

.project-tabs .tab-panel.active {
  display: grid;
  gap: 18px;
}

.project-tabs .amenity-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-tabs .amenity-grid.compact article {
  min-height: 128px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background:
    linear-gradient(180deg, #ffffff, #fbfbfb);
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.05);
}

.tab-visual {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #f5f5f5;
}

.tab-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.58) 100%);
  pointer-events: none;
}

.tab-visual img {
  display: block;
  width: 100%;
  height: 360px;
  max-height: none;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

.tab-visual span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.tab-copy {
  padding: 22px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
}

.tab-copy h3 {
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 22px;
  line-height: 1.22;
}

.tab-copy p {
  color: #56606a;
  font-size: 15px;
  line-height: 1.72;
}

@media (max-width: 680px) {
  .project-tabs {
    padding: 14px;
    border-radius: 20px;
  }

  .project-tabs .tab-buttons {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 14px;
  }

  .project-tabs .amenity-grid.compact {
    grid-template-columns: 1fr;
  }

  .tab-visual img {
    height: 260px;
  }
}

/* =========================================================
   COMFORT PREMIUM SYSTEM REFINEMENT
   Token bridge from clean real-estate UI system
========================================================= */

:root {
  --color-navy: #0f172a;
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-heading: #111827;
  --color-text: #1f2937;
  --color-text-light: #6b7280;
  --color-muted: #8a94a3;
  --color-border: #e5e7eb;
  --color-border-light: #eef0f3;
  --color-gold: #c9a227;
  --color-gold-dark: #a98214;
  --color-gold-light: #f5e6ac;
  --font-main: "Inter", "Roboto", "Arial", sans-serif;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-md: 18px;
  --text-lg: 22px;
  --text-xl: 28px;
  --text-2xl: 36px;
  --text-3xl: 48px;
  --line-height-sm: 1.35;
  --line-height-base: 1.6;
  --line-height-heading: 1.2;
  --container-width: 1200px;
  --section-padding: 90px;
  --section-padding-mobile: 55px;
  --navbar-height: 76px;
  --navbar-height-mobile: 64px;
  --logo-width: 150px;
  --logo-width-mobile: 120px;
  --space-xs: 6px;
  --space-sm: 10px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --btn-height: 48px;
  --btn-padding: 0 24px;
  --btn-font-size: 15px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.14);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --font-primary: var(--font-main);
  --container-padding: 20px;
  --card-radius: var(--radius-lg);
  --btn-radius: var(--radius-md);
  --transition-normal: var(--transition-base);
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: var(--text-base);
  line-height: var(--line-height-base);
}

.container {
  max-width: var(--container-width);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  line-height: var(--line-height-heading);
}

p {
  color: var(--color-text-light);
  font-size: var(--text-base);
}

.section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.site-header {
  min-height: var(--navbar-height);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.logo {
  width: var(--logo-width);
}

.nav-menu {
  gap: 28px;
}

.nav-menu a {
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 600;
}

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

.btn {
  min-height: var(--btn-height);
  padding: var(--btn-padding);
  border-radius: var(--radius-pill);
  font-size: var(--btn-font-size);
  font-weight: 700;
  transition: var(--transition-base);
}

.card,
.glass,
.sticky-panel,
.tabs,
.inquiry-form,
.contact-panel,
.testimonial-card,
.blog-card,
.amenity-grid article,
.values-grid article,
.office-grid article,
.team-grid article,
.property-card,
.filter-bar,
.about-proof-grid article,
.about-capability-grid article,
.about-values-grid article {
  border-color: var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.card:hover,
.glass:hover,
.property-card:hover,
.blog-card:hover,
.amenity-grid article:hover,
.values-grid article:hover,
.office-grid article:hover,
.team-grid article:hover {
  box-shadow: var(--shadow-md);
}

input,
select,
textarea,
.inquiry-form input,
.inquiry-form textarea,
.contact-form input,
.contact-form textarea,
.contact-form select,
.search-box input {
  /* border: 1px solid var(--color-border); */
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: var(--text-sm);
  outline: none;
  transition: var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus,
.inquiry-form input:focus,
.inquiry-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.14);
}

@media (max-width: 1024px) {
  :root {
    --section-padding: 70px;
  }

  .nav-menu {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  :root {
    --navbar-height: var(--navbar-height-mobile);
    --section-padding: var(--section-padding-mobile);
  }

  .logo {
    width: var(--logo-width-mobile);
  }

  .section {
    padding-top: var(--section-padding-mobile);
    padding-bottom: var(--section-padding-mobile);
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, var(--container-width));
  }
}

/* ------------------------------------------------------------
   Premium flat UI overrides (reduce clutter + subtle motion)
   ------------------------------------------------------------ */

:root {
  --shadow-flat: 0 8px 26px rgba(17, 17, 17, 0.06);
  --shadow-flat-hover: 0 12px 34px rgba(17, 17, 17, 0.09);
}

body {
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.section {
  padding: clamp(64px, 7vw, 92px) 0;
}

.eyebrow {
  margin-bottom: 14px;
  letter-spacing: 0.12em;
}

.section-heading h2,
.section-copy h2,
.contact-cta h2,
.video-content h2,
.detail-content h2,
.sticky-panel h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.12;
}

.hero h1,
.page-hero h1,
.detail-title h1,
.contact-panel h1,
.about-hero-copy h1,
.contact-intro h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.btn {
  background: var(--color-gold);
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn::after {
  display: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: none;
  border-color: rgba(201, 162, 39, 0.85);
}

.btn-ghost,
.btn-small {
  background: rgba(17, 17, 17, 0.04);
  color: var(--color-text);
  backdrop-filter: none;
}

.glass {
  backdrop-filter: none;
  box-shadow: var(--shadow-flat);
}

.glass:hover,
.property-card:hover,
.blog-card:hover,
.amenity-grid article:hover,
.values-grid article:hover,
.office-grid article:hover,
.team-grid article:hover {
  box-shadow: var(--shadow-flat-hover);
}

.property-card:hover {
  transform: translateY(-3px);
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled .nav-menu a,
.site-header.menu-active .nav-menu a {
  color: var(--color-text);
}

/* Swiper Lightbox */
.lightbox .lightbox-frame {
  width: min(100%, 1080px);
}

.lightbox-figure {
  margin: 0;
  display: grid;
  gap: 14px;
}

.lightbox-figure img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-lg, 18px);
  background: rgba(255, 255, 255, 0.55);
}

.lightbox-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.lightbox-caption strong {
  font-weight: 800;
  color: var(--color-text);
}

.lightbox-caption span {
  color: var(--color-text-light);
  font-size: 0.92rem;
}

.lightbox .swiper-button-next,
.lightbox .swiper-button-prev {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--color-text);
  top: 50%;
  translate: 0 -50%;
}

.lightbox .swiper-button-next::after,
.lightbox .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 900;
}

/* Timeline (About) */
.timeline-swiper {
  padding-bottom: 44px;
}

.timeline-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.timeline-wrapper {
  display: flex;
  gap: 0;
}

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

.timeline-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  padding: 26px 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.timeline-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 12%, rgba(201, 162, 39, 0.12), transparent 42%);
  opacity: 0.9;
  pointer-events: none;
}

.timeline-card::after {
  /* content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  pointer-events: none; */
}

.timeline-card span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--color-gold-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.timeline-card span::before {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(201, 162, 39, 0.9);
}

.timeline-card span {
  position: relative;
  z-index: 1;
  padding: 10px 12px;
  /* border: 1px solid rgba(201, 162, 39, 0.22); */
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.timeline-card span::before {
  width: 18px;
}

.timeline-card h3 {
  margin-top: 14px;
  position: relative;
  z-index: 1;
  font-size: clamp(1.1rem, 1.2vw, 1.35rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.timeline-card p {
  margin-top: 10px;
  position: relative;
  z-index: 1;
  color: var(--color-text-light);
  font-size: 0.98rem;
  line-height: 1.6;
}

.timeline-swiper .swiper-pagination {
  bottom: 8px !important;
}

.timeline-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.18);
  opacity: 1;
}

.timeline-swiper .swiper-pagination-bullet-active {
  background: rgba(201, 162, 39, 0.95);
}

.timeline-swiper .swiper-button-next,
.timeline-swiper .swiper-button-prev {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--color-text);
  box-shadow: var(--shadow-flat);
}

.timeline-swiper .swiper-button-next::after,
.timeline-swiper .swiper-button-prev::after {
  font-size: 14px;
  font-weight: 900;
}

@media (max-width: 768px) {
  .timeline-swiper {
    padding-bottom: 38px;
  }

  .timeline-card {
    min-height: 220px;
    padding: 22px 18px;
  }

  .timeline-card::after {
    left: 18px;
    right: 18px;
  }

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

/* Project details: premium flat additions */
.detail-slide {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.detail-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-facts span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 650;
}

.detail-facts i {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 10px;
  background: rgba(201, 162, 39, 0.12);
  color: rgba(201, 162, 39, 0.95);
}

.sticky-actions {
  display: grid;
  grid-template-columns: 1fr ;
  gap: 10px;
  margin-top: 18px;
}

.sticky-actions .btn {
  width: 100%;
}

.detail-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 18px;
}

.detail-highlights article {
  padding: 18px;
}

.detail-highlights i {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: rgba(201, 162, 39, 0.12);
  color: rgba(201, 162, 39, 0.95);
  font-size: 20px;
  margin-bottom: 12px;
}

.detail-highlights h3 {
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.detail-highlights p {
  margin-top: 8px;
  color: var(--color-text-light);
}

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

@media (max-width: 680px) {
  .detail-facts span {
    width: 100%;
    justify-content: space-between;
  }

  .sticky-actions {
    grid-template-columns: 1fr;
  }
}

/* Opulence-style project landing sections */
.project-block {
  margin-top: 34px;
}

.project-block-head {
  margin-bottom: 18px;
}

.project-block-title {
  margin-top: 8px;
  color: var(--color-text);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.project-block-copy {
  margin-top: 12px;
  color: var(--color-text-light);
  max-width: 78ch;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-flat);
}

.feature-item i {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 12px;
  background: rgba(201, 162, 39, 0.12);
  color: rgba(201, 162, 39, 0.95);
}

.unit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.unit-card {
  padding: 18px;
}

.unit-top span {
  display: block;
  color: var(--color-gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.unit-top h3 {
  margin-top: 10px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.unit-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--color-text-light);
}

.unit-meta strong {
  color: var(--color-text);
}

.unit-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

.amenity-grid.premium {
  margin-top: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.amenity-grid.premium article {
  padding: 18px;
}

.amenity-grid.premium i {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: rgba(201, 162, 39, 0.12);
  color: rgba(201, 162, 39, 0.95);
  font-size: 20px;
  margin-bottom: 12px;
}

.gallery-swiper {
  margin-top: 14px;
}

.gallery-card {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-flat);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-flat-hover);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-testimonials {
  margin-top: 28px;
  padding: 26px 18px;
  border-radius: 22px;
}

.project-testimonials .testimonial-card {
  background: rgba(255, 255, 255, 0.92);
}

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

  .amenity-grid.premium {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card img {
    height: 220px;
  }
}



/* =========================================================
   MOBILE RESPONSIVENESS IMPROVEMENTS PATCH
   Fixes: touch tap targets, spacing, overflow, nav UX,
   forms, grids, buttons, and general small-screen layout.
========================================================= */

/* ── 1. GLOBAL: Minimum tap target size (44×44px) ── */
a,
button,
.btn,
.menu-toggle,
.filter-tabs button,
.tab-buttons button,
.pagination button,
.socials a,
.footer-socials a,
.social-strip a,
.nav-menu a,
.play-button,
.lightbox button,
.modal button {
  -webkit-tap-highlight-color: transparent;
}

button,
.btn,
.menu-toggle,
.filter-tabs button,
.tab-buttons button,
.pagination button {
  touch-action: manipulation;
}

/* ── 2. PREVENT horizontal scroll on all screens ── */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── 3. FONT SIZE: Prevent iOS auto-zoom on inputs ── */
input,
textarea,
select {
  font-size: max(16px, 1em);
}

/* ── 4. MOBILE NAV: Full-width tap area for nav links ── */
@media (max-width: 920px) {
  .nav-menu a {
    /* display: block;
    min-height: 48px;
    line-height: 48px;
    padding: 0 14px;
    border-bottom: 1px solid var(--color-border-light);
    font-size: 15px; */
    display: block;
        min-height: 48px;
        line-height: 48px;
        padding: 0 14px;
        /* border-bottom: 1px solid var(--color-border-light); */
        font-size: 16px;
  }

  .nav-menu a:last-child {
    border-bottom: 0;
  }

  /* Ensure menu-toggle is large enough to tap */
  .menu-toggle {
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
    background-color: transparent;
  }

  /* Nav sits at right position under header */
  .nav-menu {
    top: 74px;
  }

  /* Timeline responsive on tablet */
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Detail layout: panel below content on tablet */
  .detail-layout {
    grid-template-columns: 1fr;
  }
}

/* ── 5. MOBILE ≤ 680px: Core layout fixes ── */
@media (max-width: 680px) {

  /* --- Nav --- */
  .nav-menu {
    top: 0px;
  }

  /* --- Sections --- */
  .section {
    padding-block: 56px;
  }

  .contact-cta {
    padding-block: 56px;
  }

  /* --- Buttons: minimum tap target --- */
  .btn {
    min-height: 52px;
    padding: 14px 22px;
    font-size: 15px;
  }

  .btn-small {
    min-height: 44px;
    padding: 10px 16px;
  }

  /* hero-actions: stack on very small screens */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* --- Filter bar --- */
  .filter-bar {
    padding: 14px;
    gap: 14px;
  }

  .filter-tabs {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .filter-tabs button {
    min-height: 44px;
    padding: 10px 12px;
    text-align: center;
  }

  /* --- Pagination --- */
  .pagination {
    flex-wrap: wrap;
    gap: 8px;
  }

  .pagination button {
    min-width: 44px;
    min-height: 44px;
  }

  /* --- Masonry gallery: single column, taller cells --- */
  .masonry-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    gap: 12px;
  }

  .masonry-gallery button:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  /* --- Blog cards --- */
  .blog-card img {
    aspect-ratio: 16 / 9;
  }

  /* --- Team grid: one column --- */
  .team-grid {
    grid-template-columns: 1fr;
  }

  /* --- Timeline: single column --- */
  .timeline {
    grid-template-columns: 1fr;
  }

  /* --- Sticky panel: unstick --- */
  .sticky-panel {
    position: relative;
    top: auto;
  }

  /* --- Tabs + tab buttons --- */
  .tab-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .tab-buttons button {
    min-height: 44px;
    text-align: center;
  }

  /* --- Inquiry form: single column --- */
  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .inquiry-form textarea,
  .inquiry-form .btn {
    grid-column: auto;
  }

  /* --- Contact form row: single column --- */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* --- Map frame height --- */
  .map-frame,
  .map-frame iframe {
    height: 320px;
    margin-top: 28px;
  }

  /* --- Contact panel: full width, no overflow --- */
  .contact-panel {
    width: 100%;
    margin-inline: 0;
    padding: 22px 16px;
  }

  /* --- Detail facts: stacked --- */
  .detail-facts span {
    width: 100%;
    justify-content: flex-start;
  }

  /* --- Sticky actions: single column --- */
  .sticky-actions {
    grid-template-columns: 1fr;
  }

  /* --- Counter grid: 2 col on mobile --- */
  .counter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* --- Social strip: 2-col grid --- */
  .social-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .social-strip a {
    justify-content: center;
    min-height: 48px;
  }

  /* --- Video showcase height --- */
  .video-showcase {
    min-height: 52vh;
    padding-block: 40px;
  }

  /* --- Play button tap target --- */
  .play-button {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
  }

  /* --- Footer newsletter: full width stacked --- */
  .site-footer .newsletter {
    flex-direction: column;
    padding: 10px;
    gap: 10px;
  }

  .site-footer .newsletter input {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
  }

  .site-footer .newsletter button {
    width: 100%;
    height: 44px;
    border-radius: 10px;
  }

  /* --- Socials: larger tap area --- */
  .socials a,
  .footer-socials a {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  /* --- Mobile CTA bar: ensure safe area coverage --- */
  .mobile-cta {
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    padding-inline: 20px;
  }

  /* --- Modal / lightbox close button --- */
  .modal button,
  .lightbox button {
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  /* --- About page hero --- */
  .about-hero-grid,
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-pro {
    padding: 116px 0 60px;
  }

  .about-hero-visual {
    min-height: 280px;
  }

  .about-hero-visual img {
    height: 280px;
  }

  .about-hero-card {
    position: static;
    max-width: 100%;
    margin-top: 14px;
  }

  /* --- Proof strip: 2-col --- */
  .about-proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* --- CTA inner: full stack --- */
  .contact-cta-inner {
    padding: 22px 16px;
    border-radius: 16px;
  }

  .contact-cta::before {
    inset: 10px;
    border-radius: 16px;
  }

  /* --- detail highlights: single col --- */
  .detail-highlights {
    grid-template-columns: 1fr;
  }

  /* --- unit grid: single col --- */
  .unit-grid {
    grid-template-columns: 1fr;
  }

  /* --- feature grid: single col --- */
  .feature-grid {
    grid-template-columns: 1fr;
  }

  /* --- amenity grid premium: 1 col --- */
  .amenity-grid.premium {
    grid-template-columns: 1fr;
  }

  /* --- amenity grid compact: 2 col on mobile --- */
  .amenity-grid.compact {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── 6. EXTRA SMALL ≤ 400px ── */
@media (max-width: 400px) {
  .hero h1,
  .page-hero h1,
  .detail-title h1,
  .contact-panel h1 {
    font-size: clamp(28px, 9.5vw, 38px);
  }

  .section-heading h2,
  .section-copy h2,
  .contact-cta-copy h2 {
    font-size: clamp(22px, 8.5vw, 28px);
  }

  .floating-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .floating-stats div {
            padding: 14px 6px;
        text-align: center;
  }

  .floating-stats strong {
    font-size: 17px;
  }

  .floating-stats span {
    font-size: 11px;
    line-height: 1.2;
  }

  .filter-tabs {
    grid-template-columns: 1fr;
  }

  .tab-buttons {
    grid-template-columns: 1fr;
  }

  .social-strip {
    grid-template-columns: 1fr;
  }

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

  .about-proof-grid {
    grid-template-columns: 1fr;
  }

  .amenity-grid.compact {
    grid-template-columns: 1fr;
  }

  .btn {
    font-size: 14px;
  }
}

/* ── 7. SAFE AREA support (iPhone notch / bottom bar) ── */
@supports (padding: max(0px)) {
  .site-header {
    padding-top: max(0px, env(safe-area-inset-top));
  }

  .mobile-cta {
    bottom: max(16px, calc(env(safe-area-inset-bottom) + 8px));
  }
}

/* ── 8. TOUCH HOVER FIX: disable hover transforms on touch ── */
@media (hover: none) and (pointer: coarse) {
  .property-card:hover {
    transform: none;
  }

  .property-card:hover img {
    transform: none;
  }

  .property-card:hover .property-info a {
    transform: translateY(0);
    opacity: 1;
  }

  .amenity-grid article:hover,
  .values-grid article:hover,
  .office-grid article:hover,
  .team-grid article:hover,
  .vertical-grid article:hover,
  .btn:hover,
  .contact-direct a:hover,
  .footer-socials a:hover {
    transform: none;
  }

  .masonry-gallery button:hover img {
    transform: none;
    filter: none;
  }

  /* Show property info link always on touch devices */
  .property-info a {
    transform: translateY(0);
    opacity: 1;
  }
}