:root {
  --navy: #0a1f44;
  --gold: #c11c22;
  --cream: #f3ede2;
  --bg: #f8f9fa;
  --ink: #0b1d3a;
  --muted: #6b7380;
  --shadow-soft: 0 18px 40px rgba(10, 31, 68, 0.12);
  --shadow-tight: 0 10px 24px rgba(10, 31, 68, 0.18);
}

* {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.2px;
  color: var(--navy);
}

img {
  max-width: 100%;
  display: block;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-muted {
  background: var(--bg);
}

.section-title h2 {
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section-title .lead {
  margin: 12px auto 0;
  max-width: 520px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2.8px;
  color: var(--gold);
  font-weight: 600;
}

.lead {
  color: var(--muted);
  font-weight: 300;
}

.muted-text {
  color: var(--muted) !important;
}

.center {
  text-align: center;
}

.mb-lg {
  margin-bottom: 32px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-head.split {
  flex-wrap: wrap;
}

.row-gap-md {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.row-gap-lg {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 32px;
}

.align-center {
  align-items: center;
}

.text-right-lg {
  text-align: left;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.no-margin {
  margin: 0;
}

.section-divider {
  height: 80px;
  background: linear-gradient(120deg, #ffffff 0%, #ffffff 55%, var(--bg) 55%, var(--bg) 100%);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.premium-nav {
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 20px 0;
}

.premium-nav.nav-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(10, 31, 68, 0.12);
  backdrop-filter: blur(8px);
  padding: 16px 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav .container.nav-shell {
  max-width: 100%;
  width: 100%;
  padding-left: clamp(20px, 4vw, 60px);
  padding-right: clamp(20px, 4vw, 60px);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 12px 22px;
  margin-right: 10px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 16px 0 30px rgba(10, 31, 68, 0.14);
  border: 1px solid rgba(10, 31, 68, 0.05);
  transition: all 0.3s ease;
}

.nav-logo img {
  height: 62px;
  width: auto;
  display: block;
}

.nav-collapse {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
  transition: all 0.3s ease;
}

.nav-links.nav-menu {
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  grid-column: 2;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  padding: 12px 0;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-scrolled .nav-link {
  color: var(--navy);
}

.nav-scrolled .nav-logo {
  box-shadow: none;
  border-color: rgba(10, 31, 68, 0.1);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #c9a96e;
  transition: width 0.3s ease;
}

.has-dropdown > .nav-link::before {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.6;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #c9a96e;
}

.nav-cta-btn {
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 30px;
  background: var(--gold);
  color: #ffffff;
  border: 1px solid #c9a96e;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(10, 31, 68, 0.14);
  transition: all 0.3s ease;
  grid-column: 3;
  justify-self: end;
}

.nav-cta-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-cta-btn i {
  font-size: 13px;
}

.nav-toggle {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  display: none;
}

.nav-toggle-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.3s ease;
}

.nav-toggle-icon::before {
  top: -7px;
}

.nav-toggle-icon::after {
  top: 7px;
}

.site-nav.is-open .nav-toggle-icon {
  background: transparent;
}

.site-nav.is-open .nav-toggle-icon::before {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.is-open .nav-toggle-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-scrolled .nav-toggle {
  border-color: rgba(10, 31, 68, 0.2);
  background: rgba(10, 31, 68, 0.04);
}

.nav-scrolled .nav-toggle-icon,
.nav-scrolled .nav-toggle-icon::before,
.nav-scrolled .nav-toggle-icon::after {
  background: var(--navy);
}

.nav-dropdown {
  border-radius: 14px;
  border: 1px solid rgba(10, 31, 68, 0.08);
  box-shadow: 0 20px 38px rgba(10, 31, 68, 0.16);
  padding: 12px;
  background: #ffffff;
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  list-style: none;
  margin: 0;
  z-index: 30;
}

.nav-dropdown-link {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--navy);
  text-decoration: none;
  display: block;
}

.nav-dropdown-link:hover {
  background: rgba(201, 169, 110, 0.16);
  color: var(--navy);
}

.has-dropdown {
  position: relative;
}

.has-dropdown > .nav-link {
  cursor: pointer;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown.is-open .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.has-dropdown.is-open > .nav-link {
  color: #c9a96e;
}

.btn-main,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 12px;
  padding: 12px 26px;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 8px;
}

.btn-main {
  background: var(--gold);
  color: #ffffff;
  border: 1px solid var(--gold);
  box-shadow: 0 12px 22px rgba(193, 28, 34, 0.35);
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(193, 28, 34, 0.45);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(10, 31, 68, 0.15);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-invert {
  background: #ffffff;
  color: var(--navy);
  border-color: #ffffff;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 11px;
}

.hero-section {
  position: relative;
}

.hero-slide {
  height: 92vh;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 31, 68, 0.72) 0%, rgba(10, 31, 68, 0.42) 55%, rgba(10, 31, 68, 0.12) 100%);
}

.hero-shape {
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(248, 249, 250, 0.85) 70%);
  clip-path: polygon(0 55%, 100% 0, 100% 100%, 0 100%);
  animation: drift 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  max-width: 620px;
  color: #ffffff;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  margin-bottom: 18px;
  color: #ffffff;
}

.hero-content p {
  font-size: 1.05rem;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-carousel .owl-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-carousel .owl-dots .owl-dot.active span {
  background: #ffffff;
}

@keyframes drift {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(0);
  }
}

.about-section {
  position: relative;
  background: #ffffff;
  margin-top: -40px;
  padding-top: 140px;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(201, 169, 110, 0.16), transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(10, 31, 68, 0.08), transparent 40%);
  pointer-events: none;
}

.about-media {
  position: relative;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.08), rgba(255, 255, 255, 0.9));
  box-shadow: var(--shadow-soft);
}

.about-image {
  height: 440px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
}

.about-badge {
  position: absolute;
  left: 26px;
  bottom: 26px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(10, 31, 68, 0.18);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-eyebrow {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.badge-year {
  display: block;
  font-size: 20px;
  color: var(--navy);
}

.about-points {
  margin: 22px 0 26px;
  display: grid;
  gap: 12px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 20px;
}

.about-stat {
  background: linear-gradient(155deg, #0f2d62 0%, #1f4f8f 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(10, 31, 68, 0.2);
}

.about-stat-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.about-stat-label {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.about-stats .about-stat:nth-child(2) {
  background: linear-gradient(155deg, #a21d20 0%, #d94a2a 100%);
}

.about-stats .about-stat:nth-child(3) {
  background: linear-gradient(155deg, #0a5d62 0%, #2b8a78 100%);
}

.about-points .point {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 500;
}

.about-points .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.25);
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.experience-pill {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  margin-top: 8px;
  border: 1px solid rgba(10, 31, 68, 0.08);
}

.project-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:0 0px 30px rgba(10, 31, 68, 0.12);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(10, 31, 68, 0) 0%, rgba(10, 31, 68, 0.4) 100%);
  pointer-events: none;
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(10, 31, 68, 0.2);
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.project-carousel .owl-stage-outer {
  padding: 10px 6px 18px;
  background: transparent;
}

.project-carousel .owl-item {
  height: auto;
}

.project-carousel .project-card {
  height: 100%;
}

.project-body {
  padding: 20px;
  position: relative;
  z-index: 1;
}

.ongoing-page-card .project-body {
  padding-bottom: 22px;
}

.project-copy {
  margin: 0 0 16px;
  color: var(--muted);
}

.project-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}

.project-specs li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8f9fa;
  border: 1px solid rgba(10, 31, 68, 0.08);
  font-size: 14px;
}

.project-specs span {
  font-weight: 600;
  color: var(--navy);
}

.project-specs strong {
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}

.ongoing-page-card .btn-ghost {
  width: 100%;
}

.project-thumb-card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(10, 31, 68, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-thumb-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.project-thumb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(10, 31, 68, 0.18);
}

.project-thumb-card:hover img {
  transform: scale(1.05);
}

.project-thumb-title {
  display: block;
  padding: 14px 18px 16px;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 1.18rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2px;
}

.status {
  display: inline-block;
  font-size: 11px;
  padding: 7px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: 0 6px 14px rgba(10, 31, 68, 0.1);
}

.project-card > .status {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
}

.status.ongoing {
  background: linear-gradient(135deg, #f2d8a7, #c9a96e);
  color: #10284f;
  border-color: rgba(201, 169, 110, 0.75);
  box-shadow: 0 8px 16px rgba(201, 169, 110, 0.35);
}

.status.upcoming {
  background: linear-gradient(135deg, #dce4f4, #9eb0d6);
  color: #0a1f44;
  border-color: rgba(10, 31, 68, 0.22);
  box-shadow: 0 8px 16px rgba(10, 31, 68, 0.18);
}

.status.completed {
  background: linear-gradient(135deg, #d9efdf, #8dc79a);
  color: #0d3b22;
  border-color: rgba(13, 59, 34, 0.18);
  box-shadow: 0 8px 16px rgba(13, 59, 34, 0.16);
}

.highlight-section {
  background: #ffffff;
}

.highlight-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.highlight-media img {
  height: 420px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.highlight-media:hover img {
  transform: scale(1.05);
}

.floating-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.96);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-tight);
  max-width: 260px;
}

.feature-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 24px 50px rgba(10, 31, 68, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(10, 31, 68, 0.08);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(10, 31, 68, 0.14);
}

.icon-circle {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(193, 28, 34, 0.16), rgba(243, 237, 226, 0.9));
  border: 1px solid rgba(193, 28, 34, 0.15);
  border-radius: 50%;
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: var(--navy);
}

.icon-circle svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.icon-circle i {
  font-size: 20px;
  line-height: 1;
  display: block;
}

.why-section {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 14, 34, 0.86), rgba(15, 31, 66, 0.78));
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.why-section .eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #d9b67a;
}

.why-section .section-title .lead {
  color: rgba(255, 255, 255, 0.86);
}

.why-section .section-title h2 {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
  padding-right: 0px;
  line-height: 1.15;
  color: #ffffff;
}

/* .why-section .section-title h2::after {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--gold);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
} */

.feature-grid {
  --bs-gutter-y: 28px;
}

.why-section .feature-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 34px rgba(55, 8, 11, 0.32);
}

.why-section .feature-card:hover {
  box-shadow: 0 24px 40px rgba(45, 6, 9, 0.42);
}

.why-section .feature-card h6 {
  color: #ffffff;
}

.why-section .feature-card p {
  color: rgba(255, 255, 255, 0.86);
}

.why-section .feature-count {
  color: rgba(255, 255, 255, 0.68);
}

.why-section .icon-circle {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.26);
  color: #ffffff;
}

.why-section .feature-grid > [class*="col-"]:nth-child(1) .feature-card {
  background: linear-gradient(145deg, #7f141a 0%, #b11920 52%, #5d0d12 100%);
}

.why-section .feature-grid > [class*="col-"]:nth-child(2) .feature-card {
  background: linear-gradient(155deg, #90161d 0%, #c11c22 48%, #681015 100%);
}

.why-section .feature-grid > [class*="col-"]:nth-child(3) .feature-card {
  background: linear-gradient(145deg, #6f1117 0%, #a3171d 50%, #4e0a0f 100%);
}

.why-section .feature-grid > [class*="col-"]:nth-child(4) .feature-card {
  background: linear-gradient(160deg, #9c171e 0%, #cf2127 54%, #711016 100%);
}

@media (max-width: 767.98px) {
  .why-section .section-title h2 {
    display: block;
    width: auto;
    padding-right: 0;
  }

  .why-section .section-title h2::after {
    display: none;
  }
}

.feature-card h6 {
  margin-bottom: 10px;
  font-size: 1.02rem;
  letter-spacing: 0.3px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.feature-count {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(10, 31, 68, 0.4);
  font-weight: 600;
}

.grid-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.grid-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.grid-card:hover img {
  transform: scale(1.07);
}

.grid-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(10, 31, 68, 0.05) 0%, rgba(10, 31, 68, 0.9) 78%, rgba(10, 31, 68, 0.95) 100%);
  color: #ffffff;
}

.grid-overlay h5,
.grid-overlay span {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.grid-overlay h5 {
  margin: 0 0 4px;
}

.sold-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #ffffff;
  color: var(--navy);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
}

.director-section {
  /* padding-top: 52px;
  padding-bottom: 30px; */
  background: #fff;
}

.director-header h2 {
  margin: 0;
  color: #1d2127;
  font-size: clamp(2rem, 2.3vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0.2px;
}

/* .director-underline {
  display: inline-block;
  width: 72px;
  height: 4px;
  margin-top: 16px;
  background: #835129;
} */

.director-profile-box {
  margin-top: 26px;
  border: 1px solid #dddddd;
  background: #eeeeee;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.director-photo-wrap {
  height: 100%;
  min-height: 390px;
  background: #d8d8d8;
}

.director-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.director-content {
  padding: 34px 42px 34px 42px;
  color: #575757;
}

.director-quote-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 10px;
}

.director-message {
  margin: 0;
  color: #575757;
  line-height: 1.85;
  font-size: 1rem;
}

.director-message + .director-message {
  margin-top: 20px;
}

.director-signoff {
  margin-top: 20px;
}

.director-signoff strong {
  display: block;
  font-size: 1.04rem;
  color: #3a3a3a;
  font-weight: 500;
}

.director-signoff span {
  display: block;
  color: #474747;
  font-size: 0.96rem;
  margin-top: 2px;
}

.testimonial-section {
  background:
    radial-gradient(circle at 14% 0%, rgba(201, 169, 110, 0.1), transparent 36%),
    linear-gradient(180deg, #f7f8fb 0%, #f2f4f8 100%);
}

.testimonial-section .section-title h2 {
  letter-spacing: 0.1px;
}

.customer-testimonial-grid {
  --bs-gutter-y: 24px;
}

.testimonial-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.testimonial-carousel .owl-item {
  padding: 8px 10px 14px;
  height: auto;
}

.testimonial-carousel .customer-testimonial-item {
  height: 100%;
}

.customer-testimonial-card {
  height: 100%;
  background: linear-gradient(160deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 18px;
  box-shadow: 0 0px 34px rgba(10, 31, 68, 0.09);
  padding: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customer-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(10, 31, 68, 0.14);
}

.customer-testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.customer-thumb {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(10, 31, 68, 0.1);
  background: #ffffff;
  padding: 4px;
  flex: 0 0 64px;
}

.customer-testimonial-card h6 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--navy);
}

.customer-testimonial-card small {
  color: rgba(10, 31, 68, 0.58);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  font-weight: 600;
}

.customer-testimonial-card p {
  margin: 0;
  color: #263655;
  line-height: 1.65;
  font-size: 0.98rem;
}

.testimonial-carousel .owl-dots {
  margin-top: 12px !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
  width: 11px !important;
  height: 11px !important;
  margin: 0 5px !important;
  background: rgba(10, 31, 68, 0.25) !important;
  transition: all 0.25s ease;
}

.testimonial-carousel .owl-dots .owl-dot.active span {
  width: 28px !important;
  border-radius: 999px !important;
  background: var(--gold) !important;
}

.testimonial-carousel .owl-dots {
  display: block !important;
  text-align: center;
}

.testimonial-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.testimonial-carousel .owl-stage-outer {
  padding: 0;
  margin: 0;
  background: transparent !important;
}

.testimonial-carousel .owl-item {
  height: auto;
  padding: 10px 12px 16px;
}

.testimonial-carousel .testimonial-card {
  height: 100%;
}

.testimonial-card {
  background: linear-gradient(155deg, #ffffff 0%, #f9fbff 100%);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 0px 30px rgba(10, 31, 68, 0.09);
  border: 1px solid rgba(10, 31, 68, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0px 36px rgba(10, 31, 68, 0.13);
}

.testimonial-section .testimonial-head {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.testimonial-section .testimonial-head > div {
  min-width: 0;
}

.testimonial-section .avatar {
  width: 170px;
  height: 56px;
  border-radius: 12px;
  object-fit: contain;
  object-position: left center;
  margin: 0;
  background: rgba(10, 31, 68, 0.04);
  border: 1px solid rgba(10, 31, 68, 0.08);
  padding: 6px 12px;
  flex-shrink: 0;
}

.testimonial-carousel .owl-item img.avatar {
  width: 170px;
  max-width: none;
}

.testimonial-section .testimonial-head .no-margin {
  font-family: "Poppins", sans-serif;
  font-size: 1.06rem;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-section .testimonial-head small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  font-weight: 600;
}

.testimonial-section .testimonial-card p {
  margin: 0;
  color: #243452;
  font-size: 1.04rem;
  line-height: 1.65;
  font-weight: 500;
}

.testimonial-carousel .owl-dots {
  margin-top: 24px !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
  width: 12px !important;
  height: 12px !important;
  background: rgba(10, 31, 68, 0.22) !important;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

.testimonial-carousel .owl-dots .owl-dot.active span {
  width: 28px !important;
  border-radius: 999px !important;
  background: var(--gold) !important;
}

.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.career-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 169, 110, 0.18), transparent 36%),
    linear-gradient(180deg, #f8f9fb 0%, #eef2f8 100%);
}

.career-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(10, 31, 68, 0.04), transparent 42%),
    radial-gradient(circle at 88% 16%, rgba(10, 31, 68, 0.08), transparent 34%);
}

.career-section .container {
  position: relative;
  z-index: 1;
}

.career-panel {
  background: linear-gradient(160deg, #ffffff 0%, #f7f9fd 100%);
  border: 1px solid rgba(10, 31, 68, 0.1);
  border-radius: 26px;
  padding: 40px;
  box-shadow: 0 20px 46px rgba(10, 31, 68, 0.12);
}

.career-panel .section-title h2 {
  margin-bottom: 12px;
}

.career-panel .lead {
  color: #3b4a66;
  margin-bottom: 18px;
}

.career-points {
  display: grid;
  gap: 10px;
}

.career-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(10, 31, 68, 0.08);
  background: rgba(10, 31, 68, 0.03);
  color: #2e3f5f;
  font-size: 14px;
  line-height: 1.55;
}

.career-point i {
  color: var(--gold);
  margin-top: 2px;
}

.career-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.career-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10, 31, 68, 0.08);
  border: 1px solid rgba(10, 31, 68, 0.08);
  color: var(--navy);
  font-size: 12px;
  letter-spacing: 0.2px;
  font-weight: 500;
}

.career-highlights i {
  color: var(--gold);
}

.career-cta-card {
  background: linear-gradient(145deg, #0a1f44 0%, #102a57 58%, #08162f 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 20px 36px rgba(10, 31, 68, 0.25);
  text-align: left;
  max-width: 440px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.career-cta-card small {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: rgba(201, 169, 110, 0.95);
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
}

.career-cta-card h5 {
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.35;
}

.career-role-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.career-role-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  font-size: 13px;
}

.career-role-list li + li {
  margin-top: 8px;
}

.career-role-list i {
  color: #d9b67a;
  margin-top: 3px;
}

.career-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.career-outline {
  border-color: rgba(255, 255, 255, 0.56);
  color: #ffffff;
}

.career-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.cta-section {
  position: relative;
  padding: 90px 0;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10, 31, 68, 0.88), rgba(10, 31, 68, 0.68));
}

.cta-section .container {
  position: relative;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 34px 36px;
  box-shadow: 0 22px 50px rgba(10, 31, 68, 0.3);
  backdrop-filter: blur(4px);
}

.contact-section .eyebrow {
  color: rgba(201, 169, 110, 0.95);
}

.contact-section h2 {
  color: #ffffff;
  margin-bottom: 10px;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 20px;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-meta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.contact-meta a:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
}

.site-booking-form {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 16px;
}

.site-booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-field label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 0.35px;
  font-weight: 500;
}

.booking-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(6, 16, 38, 0.55);
  color: #ffffff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.booking-input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.booking-input:focus {
  border-color: rgba(201, 169, 110, 0.8);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.16);
  background: rgba(6, 16, 38, 0.72);
}

.booking-input option {
  color: #0a1f44;
}

.booking-field-full {
  grid-column: 1 / -1;
}

.booking-textarea {
  resize: vertical;
  min-height: 94px;
}

.booking-submit {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

.contact-cta-stack {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.contact-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.contact-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #0a1f44 0%, #07132b 58%, #050a17 100%);
  color: #cccccc;
  padding: 72px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Poppins", sans-serif;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(201, 169, 110, 0.12), transparent 35%),
    radial-gradient(circle at 82% 88%, rgba(255, 255, 255, 0.06), transparent 32%);
  opacity: 0.65;
}

.footer h5,
.footer h6 {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-top {
  position: relative;
  z-index: 1;
  padding-bottom: 24px;
  align-items: flex-start;
}

.footer-col {
  position: relative;
}

.footer-card {
  /* height: 100%;
  border-radius: 18px;
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22); */
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #c9a96e;
}

.footer .social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 15px;
  flex: 0 0 38px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.footer .social-links a:hover {
  background: #c9a96e;
  border-color: #c9a96e;
  color: #0a1f44;
  transform: translateY(-2px);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  letter-spacing: 0.3px;
}

.footer .footer-brand p {
  max-width: 370px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.74);
}

.footer-meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-meta span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.25px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li + li {
  margin-top: 10px;
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}

.footer-list li i {
  width: 14px;
  color: #c9a96e;
  margin-top: 3px;
}

.footer-hours {
  margin-top: 14px;
  line-height: 1.6;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-hours i {
  color: #c9a96e;
  margin-right: 8px;
}

.footer-contacts a {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-card {
  /* border-radius: 16px;
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22); */
}

.footer-contact-card h6 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

/* .footer-contact-card h6::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.55), rgba(201, 169, 110, 0));
} */

.footer-contact-card .footer-list li {
  margin-top: 0;
  padding: 9px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-card .footer-list li + li {
  margin-top:12px;
}

.footer-contact-card .footer-list li i {
  width: 24px;
  height: 24px;
  margin-top: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color:var(--gold);
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.38);
  font-size: 11px;
  flex: 0 0 24px;
}

.footer-contact-card .footer-contacts a {
  width: 100%;
  color: rgba(255, 255, 255, 0.88);
}

.footer-contact-card .footer-contacts a:hover {
  color: #ffffff;
}

.footer-contact-card .footer-hours {
  margin: 10px 0 0;
  padding: 9px 10px;
  border-radius: 10px;
  background: rgba(201, 169, 110, 0.09);
  border: 1px solid rgba(201, 169, 110, 0.28);
  color: rgba(255, 255, 255, 0.84);
}

.footer-contact-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  letter-spacing: 0.2px;
  color: #ffffff;
}

.footer-contact-actions a:hover {
  background: #c9a96e;
  border-color: #c9a96e;
  color: #0a1f44;
}

.footer-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.footer-map iframe {
  width: 100%;
  height: 190px;
  border: 0;
  display: block;
}

.footer-social {
  margin-top: 12px;
}

.footer-bottom-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.64);
}

.footer-bottom-links a:hover {
  color: #c9a96e;
}

.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #c11c22;
  color: #fff;
  box-shadow: 0 16px 30px rgba(10, 31, 68, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.36);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 1050;
}

.scroll-top-btn:hover {
  color: #0a1f44;
  box-shadow: 0 18px 36px rgba(10, 31, 68, 0.32);
  transform: translateY(0) scale(1.04);
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn i {
  font-size: 16px;
  line-height: 1;
}

.link-arrow {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-right: 18px;
}

.link-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}

.project-carousel .owl-nav {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 18px;
}

.project-carousel .owl-nav button {
  background: #ffffff !important;
  border-radius: 50% !important;
  width: 44px;
  height: 44px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(10, 31, 68, 0.08) !important;
}

.nav-arrow {
  font-size: 20px;
  color: var(--navy);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 90px;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.page-hero-copy,
.page-hero-card {
  height: 100%;
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 48px rgba(10, 31, 68, 0.22);
  backdrop-filter: blur(6px);
}

.page-hero .eyebrow {
  color: #e7c88f;
}

.page-hero h1 {
  margin: 12px 0 16px;
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.08;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.84);
  max-width: 46rem;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}

.page-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 600;
}

.page-hero-card h3 {
  margin: 10px 0 12px;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
}

.page-hero-card p {
  color: rgba(255, 255, 255, 0.82);
}

.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #ffffff;
}

.hero-checklist i {
  color: var(--gold);
  margin-top: 4px;
}

.cms-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 92px;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.cms-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(201, 169, 110, 0.22), rgba(201, 169, 110, 0) 45%),
    linear-gradient(180deg, rgba(4, 11, 24, 0.1), rgba(4, 11, 24, 0.24));
  pointer-events: none;
}

.cms-hero .container {
  position: relative;
  z-index: 1;
}

.cms-hero-content {
  max-width: 760px;
  padding: 24px 0;
}

.cms-hero-content h1 {
  margin: 12px 0 16px;
  color: #ffffff;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 1.06;
}

.cms-hero-content .lead {
  margin: 0;
  max-width: 52rem;
  color: rgba(255, 255, 255, 0.84);
}

.cms-intro-card {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.96));
  border: 1px solid rgba(10, 31, 68, 0.08);
  box-shadow: var(--shadow-soft);
}

.cms-intro-card p {
  margin: 14px 0 0;
  font-size: 1.06rem;
  color: var(--muted);
}

.cms-faq .accordion {
  display: grid;
  gap: 14px;
}

.cms-faq .accordion-item {
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.cms-faq .accordion-button {
  padding: 20px 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--navy);
  background: #ffffff;
  box-shadow: none;
}

.cms-faq .accordion-button:not(.collapsed) {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.98), rgba(15, 41, 84, 0.96));
}

.cms-faq .accordion-button:focus {
  border-color: rgba(10, 31, 68, 0.12);
  box-shadow: none;
}

.cms-faq .accordion-button::after {
  transition: transform 0.25s ease, filter 0.25s ease;
}

.cms-faq .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.cms-faq .accordion-body {
  padding: 0 24px 22px;
  background: #ffffff;
  color: var(--muted);
}

.project-detail-hero {
  position: relative;
  padding: 150px 0 70px;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.project-detail-hero .container {
  position: relative;
  z-index: 1;
}

.project-detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.project-detail-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.project-detail-page {
  background: #ffffff;
}

.project-page-hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #0a1f44;
}

.project-page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 20, 44, 0.16), rgba(8, 20, 44, 0.02));
}

.project-page-hero .container {
  position: relative;
  z-index: 1;
}

.project-page-hero-copy {
  padding: 220px 0 44px;
  max-width: 720px;
}

.project-page-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.96;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.project-jump-nav-wrap {
  background: #ffffff;
  border-bottom: 1px solid rgba(10, 31, 68, 0.08);
  box-shadow: 0 10px 24px rgba(10, 31, 68, 0.06);
  position: sticky;
  top: 96px;
  z-index: 900;
}

.project-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 0;
}

.project-jump-nav a {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: #f6f7fb;
  border: 1px solid rgba(10, 31, 68, 0.08);
  color: var(--navy);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.project-jump-nav a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
}

.project-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 150px;
}

.project-section::before {
  content: "";
  position: absolute;
  inset: auto -12% -140px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.12), rgba(201, 169, 110, 0));
  pointer-events: none;
}

.project-section .container {
  position: relative;
  z-index: 1;
}

.project-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.project-section-head h2 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.project-section-head .lead {
  margin: 0;
}

.project-overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.project-overview-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.project-overview-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  border: 1px solid rgba(10, 31, 68, 0.08);
  box-shadow: var(--shadow-soft);
}

.project-overview-card h3 {
  margin: 12px 0 12px;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
}

.project-overview-card p {
  color: var(--muted);
}

.project-overview-card .detail-fact {
  background: #f6f8fc;
  border-color: rgba(10, 31, 68, 0.08);
}

.project-overview-card .detail-fact span {
  color: var(--muted);
}

.project-overview-card .detail-fact strong {
  color: var(--navy);
}

.project-overview-card .project-overview-points li {
  color: var(--ink);
}

.project-overview-meta {
  margin-top: 18px;
}

.project-overview-points {
  margin-top: 18px;
}

.project-specs-section {
  background:
    radial-gradient(circle at top left, rgba(201, 169, 110, 0.08), rgba(201, 169, 110, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);
  color: var(--navy);
}

.spec-editorial-head {
  max-width: 740px;
  margin-bottom: 32px;
}

.spec-editorial-head .eyebrow {
  color: #b02c2c;
}

.spec-editorial-head h2 {
  margin: 10px 0 12px;
  font-size: clamp(2.1rem, 3.6vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.spec-editorial-head .lead {
  margin-bottom: 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.spec-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.spec-info-card {
  min-height: 190px;
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-top: 4px solid #d52424;
  box-shadow: 0 18px 38px rgba(10, 31, 68, 0.06);
  font-family: "Poppins", sans-serif;
}

.spec-info-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
}

.spec-info-card p {
  margin: 0 0 10px;
  color: #667085;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}

.spec-info-card p:last-child {
  margin-bottom: 0;
}

.spec-info-card strong {
  color: var(--navy);
  font-weight: 700;
}

.spec-info-card-emphasis {
  border-top-color: #d7b87d;
  border-color: #eadbb7;
  background: linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
}

.spec-info-card-emphasis h3 {
  color: #d52424;
}

.spec-callout {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 26px 30px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  box-shadow: 0 22px 50px rgba(10, 31, 68, 0.24);
      background: linear-gradient(135deg, rgba(10, 31, 68, 0.98), rgba(13, 46, 96, 0.96));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.spec-callout::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 72%, rgba(201, 169, 110, 0.2), rgba(201, 169, 110, 0) 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.spec-callout-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.spec-callout-copy .eyebrow {
  color: #e7c88f;
}

.spec-callout-copy h3 {
  margin: 10px 0 10px;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.7vw, 2.35rem);
  line-height: 1.06;
}

.spec-callout-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 60rem;
}

.spec-callout-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.spec-callout-tags span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 700;
}

.project-spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: start;
}

.project-spec-list {
  display: grid;
  gap: 12px;
}

.project-specs-section .project-section-head .eyebrow,
.project-specs-section .project-section-head h2,
.project-specs-section .project-section-head .lead {
  color: #ffffff;
}

.project-specs-section .project-section-head .lead {
  color: rgba(255, 255, 255, 0.82);
}

.project-specs-section .detail-spec-row {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.project-specs-section .detail-spec-row dt,
.project-specs-section .detail-spec-row dd {
  color: #ffffff;
}

.project-spec-note {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.project-spec-note h3 {
  margin: 12px 0 12px;
  color: #ffffff;
}

.project-spec-note p {
  color: rgba(255, 255, 255, 0.82);
}

.project-location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.project-map-card,
.project-location-card,
.project-enquiry-form,
.project-enquiry-copy {
  border-radius: 24px;
  border: 1px solid rgba(10, 31, 68, 0.08);
  box-shadow: var(--shadow-soft);
}

.project-map-card {
  overflow: hidden;
  background: #ffffff;
}

.project-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.project-location-card {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

.project-location-card h3 {
  margin: 12px 0 12px;
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
}

.project-location-card p {
  color: var(--muted);
}

.project-location-meta {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.project-location-chip {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f8f9fa;
  border: 1px solid rgba(10, 31, 68, 0.08);
}

.project-location-chip span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
}

.project-location-chip strong {
  color: var(--navy);
}

.gallery-carousel {
  width: 100%;
  margin-top: 6px;
}

.gallery-carousel .owl-stage-outer {
  overflow: hidden;
}

.gallery-carousel-item {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(10, 31, 68, 0.08);
  background: #ffffff;
  text-decoration: none;
  cursor: zoom-in;
}

.gallery-carousel-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-carousel-item:hover img {
  transform: scale(1.05);
}

.gallery-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  position: absolute;
  left: 16px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.gallery-carousel .owl-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(8px);
  pointer-events: auto;
}

.gallery-carousel .nav-arrow {
  color: #ffffff;
  font-size: 18px;
}

.gallery-carousel .owl-dots {
  margin-top: 18px;
}

.gallery-carousel .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  background: rgba(10, 31, 68, 0.2);
}

.gallery-carousel .owl-dots .owl-dot.active span {
  background: var(--gold);
}

.project-enquiry-section {
  background: linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);
}

.project-enquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.project-enquiry-copy {
  padding: 28px;
  background: linear-gradient(160deg, rgba(10, 31, 68, 0.98), rgba(18, 53, 111, 0.94));
  color: #ffffff;
}

.project-enquiry-copy h2 {
  margin: 12px 0 12px;
  color: #ffffff;
}

.project-enquiry-copy .lead {
  color: rgba(255, 255, 255, 0.82);
}

.project-enquiry-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.project-enquiry-point {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.project-enquiry-form {
  padding: 28px;
  background: #ffffff;
}

.project-enquiry-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
}

.project-enquiry-form .form-control {
  border-radius: 14px;
  border: 1px solid rgba(10, 31, 68, 0.12);
  padding: 12px 14px;
  box-shadow: none;
}

.project-enquiry-form .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.16);
}

.project-enquiry-form textarea.form-control {
  min-height: 140px;
}

.project-enquiry-form .btn-main {
  width: 100%;
  justify-content: center;
}

.project-walkthrough-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 42%),
    radial-gradient(circle at bottom right, rgba(201, 169, 110, 0.18), transparent 34%),
    linear-gradient(135deg, #7a441c 0%, #3a2517 42%, #161d2b 100%);
  color: #ffffff;
}

.project-walkthrough-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 18%);
  pointer-events: none;
}

.project-walkthrough-section .container {
  position: relative;
  z-index: 1;
}

.project-walkthrough-section .project-section-head .eyebrow,
.project-walkthrough-section .project-section-head h2,
.project-walkthrough-section .project-section-head .lead {
  color: #ffffff;
}

.project-walkthrough-section .project-section-head .lead {
  color: rgba(255, 255, 255, 0.82);
}

.project-walkthrough-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
}

.project-walkthrough-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.26);
  background: #000000;
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.project-walkthrough-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.01);
}

.project-walkthrough-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gold);
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.project-walkthrough-play i {
  font-size: 22px;
  margin-left: 4px;
}

.walkthrough-modal-open {
  overflow: hidden;
}

.walkthrough-video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 18, 34, 0.82);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.walkthrough-video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.walkthrough-video-shell {
  position: relative;
  width: min(92vw, 960px);
}

.walkthrough-video-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--navy);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.walkthrough-video-close i {
  font-size: 18px;
}

.walkthrough-video {
  width: 100%;
  display: block;
  border-radius: 22px;
  background: #000000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.walkthrough-video-caption {
  margin-top: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  letter-spacing: 0.3px;
}

.project-walkthrough-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(10, 31, 68, 0.1), rgba(10, 31, 68, 0.78));
  color: #ffffff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.project-walkthrough-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(201, 169, 110, 0.18);
  color: #fff4df;
  border: 1px solid rgba(201, 169, 110, 0.28);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
}

.project-walkthrough-overlay-copy {
  display: grid;
  gap: 4px;
}

.project-walkthrough-overlay-copy strong {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.project-walkthrough-overlay-copy span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.project-walkthrough-copy h3 {
  margin: 10px 0 14px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.project-walkthrough-copy p,
.project-walkthrough-copy .detail-list li {
  color: rgba(255, 255, 255, 0.86);
}

.walkthrough-points {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.walkthrough-points li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.walkthrough-points li span {
  line-height: 1.55;
}

.project-walkthrough-note {
  margin-top: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.walkthrough-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.walkthrough-actions .btn-main,
.walkthrough-actions .btn-outline {
  min-width: 180px;
  justify-content: center;
}

.projects-hero {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  color: #ffffff;
}

.projects-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6, 16, 38, 0.45), rgba(6, 16, 38, 0.18));
}

.projects-hero .container {
  position: relative;
  z-index: 1;
}

.projects-hero-copy {
  max-width: 680px;
  padding: 150px 0 34px;
}

.projects-hero .eyebrow {
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 3.2px;
}

.projects-hero h1 {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  line-height: 0.98;
  font-weight: 700;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.projects-showcase {
  background: #ffffff;
  padding-top: 78px;
  padding-bottom: 88px;
}

.projects-shell {
  /* max-width: 1060px; */
}

.project-showcase-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(10, 31, 68, 0.12);
}

.project-showcase-media {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

.project-showcase-media img {
  width: 100%;
  height: 248px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.project-showcase-card:hover .project-showcase-media img {
  transform: scale(1.05);
}

.project-showcase-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 8px;
  background: #1f1f22;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  z-index: 2;
}

.project-showcase-badge.ongoing {
  background: linear-gradient(135deg, #f2d8a7, #c9a96e);
  color: #10284f;
}

.project-showcase-badge.upcoming {
  background: linear-gradient(135deg, #dce4f4, #9eb0d6);
  color: #0a1f44;
}

.project-showcase-badge.completed {
  background: linear-gradient(135deg, #d9efdf, #8dc79a);
  color: #0d3b22;
}

.project-showcase-body {
  padding: 12px 12px 14px;
  border-top: 1px solid #dcdcdc;
}

.project-showcase-body h3 {
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1c1c1c;
}

.project-showcase-body p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: #5a5f66;
  font-size: 12px;
  line-height: 1.45;
}

.project-showcase-body i {
  margin-top: 2px;
  color: #1f7a34;
}

.projects-cta-section {
  position: relative;
  padding: 78px 0;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.projects-cta-section .cta-overlay {
  background: linear-gradient(110deg, rgba(10, 31, 68, 0.9), rgba(10, 31, 68, 0.72));
}

.projects-cta-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.projects-cta-copy h2 {
  margin: 10px 0 10px;
  color: #ffffff;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
}

.projects-cta-copy p {
  max-width: 640px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.84);
}

.projects-cta-copy .btn-main {
  background: #b67637;
  border-color: #b67637;
  box-shadow: 0 12px 24px rgba(182, 118, 55, 0.3);
}

.projects-cta-copy .btn-main:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--navy);
}

.project-overview-hero {
  position: relative;
  overflow: hidden;
  padding: 126px 0 30px;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.project-overview-hero .container {
  position: relative;
  z-index: 1;
}

.project-overview-copy {
  max-width: 760px;
}

.project-overview-hero .eyebrow {
  color: #e7c88f;
}

.project-overview-hero h1 {
  margin: 12px 0 12px;
  color: #ffffff;
  font-size: clamp(2.3rem, 4.3vw, 4rem);
  line-height: 1.05;
}

.project-overview-hero .lead {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
}

.project-page-breadcrumb {
  background: #ffffff;
  border-bottom: 1px solid rgba(10, 31, 68, 0.08);
  box-shadow: 0 10px 24px rgba(10, 31, 68, 0.05);
}

.project-page-breadcrumb .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  padding-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
}

.project-page-breadcrumb a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.project-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
}

.project-detail-media,
.project-detail-summary,
.detail-panel {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 48px rgba(10, 31, 68, 0.22);
  backdrop-filter: blur(6px);
}

.project-detail-media {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.project-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.project-detail-summary {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
}

.project-detail-summary h1 {
  margin: 14px 0 14px;
  color: #ffffff;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.08;
}

.project-detail-summary .lead {
  color: rgba(255, 255, 255, 0.84);
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.detail-badges span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.detail-fact {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.detail-fact span {
  display: block;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.detail-fact strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.detail-actions .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.detail-actions .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.project-detail-content {
  padding: 80px 0 90px;
}

.project-section {
  position: relative;
  overflow: hidden;
}

.project-section::before {
  content: "";
  position: absolute;
  inset: auto -12% -140px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.18), rgba(201, 169, 110, 0));
  pointer-events: none;
}

.project-section .container {
  position: relative;
  z-index: 1;
}

.project-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.project-section-head h2 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.project-section-head .lead {
  margin: 0;
}

.project-overview-section {
  background: #ffffff;
}

.overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
}

.story-card,
.spotlight-card,
.spec-note-card,
.next-action-card {
  border-radius: 28px;
  border: 1px solid rgba(10, 31, 68, 0.08);
  box-shadow: var(--shadow-soft);
}

.story-card {
  padding: 32px;
  background: linear-gradient(140deg, rgba(10, 31, 68, 0.98), rgba(15, 41, 84, 0.92));
  color: #ffffff;
}

.story-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.story-flag,
.story-badge,
.spec-pill-row span,
.spotlight-item span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.story-flag {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.story-badge {
  color: #ffffff;
  background: rgba(201, 169, 110, 0.16);
  border: 1px solid rgba(201, 169, 110, 0.28);
}

.story-card h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
}

.story-card p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 62ch;
}

.story-card .detail-list li,
.next-action-card .detail-bullets li {
  color: inherit;
}

.story-card .detail-list i,
.next-action-card .detail-bullets i {
  color: #e8c989;
}

.spotlight-card {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

.spotlight-figure {
  padding: 24px 22px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(193, 28, 34, 0.12), rgba(201, 169, 110, 0.08));
  border: 1px solid rgba(193, 28, 34, 0.08);
  margin-bottom: 18px;
}

.spotlight-figure strong {
  display: block;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1.1;
}

.spotlight-figure span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.spotlight-item {
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(10, 31, 68, 0.08);
}

.spotlight-item span {
  margin-bottom: 6px;
  background: rgba(10, 31, 68, 0.05);
  color: var(--muted);
}

.spotlight-item strong {
  color: var(--navy);
  font-size: 1rem;
}

.project-amenities-section {
  background: linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.amenity-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(10, 31, 68, 0.08);
  box-shadow: 0 18px 36px rgba(10, 31, 68, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(10, 31, 68, 0.12);
}

.amenity-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(193, 28, 34, 0.14), rgba(243, 237, 226, 0.92));
  border: 1px solid rgba(193, 28, 34, 0.14);
  color: var(--gold);
}

.amenity-icon i {
  font-size: 20px;
}

.amenity-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--navy);
}

.amenity-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.specs-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.spec-note-card {
  padding: 32px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.spec-note-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -90px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.28), rgba(201, 169, 110, 0));
  pointer-events: none;
}

.spec-note-card > * {
  position: relative;
  z-index: 1;
}

.spec-note-card h3 {
  margin: 14px 0 14px;
  color: #ffffff;
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  line-height: 1.14;
}

.spec-note-card p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
}

.spec-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.spec-pill-row span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.spec-table-card {
  /* padding: 30px;
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, #fdfdfc 100%); */
}

.spec-table-card::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 169, 110, 0.2));
}

.spec-table-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 1;
  padding-top: 10px;
}

.spec-group {
  height: 100%;
  padding: 20px 18px 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(248, 249, 250, 0.92), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-top: 4px solid var(--gold);
  box-shadow: 0 12px 24px rgba(10, 31, 68, 0.05);
}

.spec-group h3 {
  margin: 0 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.spec-group p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.spec-group p:last-child {
  margin-bottom: 0;
}

.spec-inline {
  padding-top: 2px;
}

.spec-group strong {
  color: var(--navy);
  font-weight: 700;
}

.spec-group-highlight {
  background: linear-gradient(145deg, rgba(201, 169, 110, 0.12), rgba(255, 255, 255, 0.96));
  border-color: rgba(201, 169, 110, 0.24);
  border-left-color: rgba(201, 169, 110, 0.95);
}

.spec-group-highlight h3 {
  color: var(--gold);
}

.project-next-section {
  background: #ffffff;
}

.next-action-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.98), rgba(10, 31, 68, 0.9));
  color: #ffffff;
}

.next-action-copy h2 {
  margin: 10px 0 14px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.next-action-copy p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
}

.next-action-side {
  display: grid;
  gap: 18px;
}

.next-action-card .detail-bullets {
  margin-top: 0;
}

.next-actions {
  margin-top: 0;
}

.next-actions .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.38);
}

.detail-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: start;
}

.detail-overview {
  grid-column: 1;
}

.detail-specs {
  grid-column: 2;
}

.detail-amenities-panel {
  grid-column: 1;
}

.detail-floor-panel {
  grid-column: 2;
}

.detail-next-panel {
  grid-column: 1 / -1;
}

.detail-panel {
  padding: 28px;
  background: #ffffff;
  border-color: rgba(10, 31, 68, 0.08);
  box-shadow: var(--shadow-soft);
}

.detail-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

.detail-panel p {
  color: var(--muted);
}

.detail-list,
.detail-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.detail-list li,
.detail-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
}

.detail-list i,
.detail-bullets i {
  color: var(--gold);
  margin-top: 4px;
}

.detail-spec-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.detail-amenities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.detail-amenity-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: #f8f9fa;
  border: 1px solid rgba(10, 31, 68, 0.08);
}

.detail-amenity-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(193, 28, 34, 0.12), rgba(243, 237, 226, 0.9));
  color: var(--gold);
  border: 1px solid rgba(193, 28, 34, 0.12);
}

.detail-amenity-icon i {
  font-size: 18px;
}

.detail-amenity-copy h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--navy);
}

.detail-amenity-copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.floor-plan-list {
  display: grid;
  gap: 12px;
}

.floor-plan-card {
  padding: 16px;
  border-radius: 16px;
  background: #f8f9fa;
  border: 1px solid rgba(10, 31, 68, 0.08);
}

.floor-plan-slide {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10, 31, 68, 0.08);
  background: #ffffff;
  text-decoration: none;
  cursor: zoom-in;
}

.floor-plan-slide img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: #ffffff;
}

.floor-plan-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.floor-plan-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.floor-plan-head strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.floor-plan-status {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(201, 169, 110, 0.14);
  border: 1px solid rgba(201, 169, 110, 0.28);
  color: var(--navy);
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 700;
  flex-shrink: 0;
}

.floor-plan-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.floor-plan-preview {
  display: block;
  margin-top: 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10, 31, 68, 0.08);
  background: #ffffff;
  text-decoration: none;
}

.floor-plan-preview img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: #ffffff;
}

@media (min-width: 992px) {
  .floor-plan-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .floor-plan-preview img {
    height: 240px;
  }
}

.detail-spec-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8f9fa;
  border: 1px solid rgba(10, 31, 68, 0.08);
}

.detail-spec-row dt {
  margin: 0;
  font-weight: 600;
  color: var(--navy);
}

.detail-spec-row dd {
  margin: 0;
  text-align: right;
  color: var(--ink);
  font-weight: 500;
}

@media (max-width: 991px) {
  .project-jump-nav-wrap {
    top: 80px;
  }
  .project-page-hero {
    min-height: 420px;
  }
  .project-page-hero-copy {
    padding: 150px 0 30px;
  }
  .project-page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
  }
  .project-overview-layout,
  .project-spec-layout,
  .project-location-layout,
  .project-enquiry-layout {
    grid-template-columns: 1fr;
  }
  .project-walkthrough-layout {
    grid-template-columns: 1fr;
  }
  .project-walkthrough-media {
    min-height: 300px;
  }
  .project-overview-media img {
    min-height: 340px;
  }
  .project-spec-note,
  .project-location-card,
  .project-enquiry-copy,
  .project-enquiry-form,
  .project-overview-card {
    padding: 24px;
  }
  .spec-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .spec-callout {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .spec-callout-tags {
    justify-content: flex-start;
  }
  .project-map-card iframe {
    min-height: 320px;
  }
  .project-jump-nav {
    gap: 8px;
  }
  .project-jump-nav a {
    padding: 8px 12px;
  }
  .ongoing-projects-page .nav-cta-btn {
    width: auto;
  }
  .projects-hero {
    min-height: 200px;
  }
  .projects-hero-copy {
    padding: 66px 0 28px;
  }
  .projects-showcase {
    padding-top: 64px;
    padding-bottom: 72px;
  }
  .project-showcase-media img {
    height: 230px;
  }
  .projects-cta-section {
    padding: 66px 0;
  }
  .page-hero-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-copy,
  .page-hero-card {
    padding: 24px;
  }
  .project-overview-hero {
    padding: 118px 0 26px;
  }
  .project-overview-copy {
    max-width: 100%;
  }
  .project-detail-hero {
    padding: 128px 0 60px;
  }
  .project-detail-shell {
    grid-template-columns: 1fr;
  }
  .project-detail-media img {
    min-height: 340px;
  }
  .project-detail-summary {
    padding: 24px;
  }
  .detail-facts {
    grid-template-columns: 1fr;
  }
  .project-detail-content {
    padding: 70px 0 76px;
  }
  .project-section-head {
    margin-bottom: 22px;
  }
  .overview-layout,
  .specs-layout,
  .next-action-card {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .story-card,
  .spotlight-card,
  .spec-note-card,
  .spec-table-card,
  .next-action-card {
    padding: 24px;
  }
  .next-action-card {
    gap: 18px;
  }
  .detail-layout-grid {
    grid-template-columns: 1fr;
  }
  .detail-overview,
  .detail-specs,
  .detail-amenities-panel,
  .detail-floor-panel,
  .detail-next-panel {
    grid-column: auto;
  }
  .detail-amenities {
    grid-template-columns: 1fr;
  }
  .spotlight-grid {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .diagram-row {
    grid-template-columns: 1fr;
  }
  .hero-slide {
    height: 75vh;
  }
  .section {
    padding: 80px 0;
  }
  .site-nav .container.nav-shell {
    padding-left: 16px;
    padding-right: 16px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .nav-logo {
    margin: 0;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 10px 0 22px rgba(10, 31, 68, 0.12);
  }
  .nav-logo img {
    height: 48px;
  }
  .nav-toggle {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-color: rgba(10, 31, 68, 0.2);
    background: rgba(10, 31, 68, 0.04);
    border-radius: 999px;
    flex: 0 0 auto;
    align-self: center;
  }
  .nav-toggle-icon,
  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
    background: var(--navy);
  }
  .nav-collapse {
    display: none;
    order: 3;
    flex: 0 0 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    padding: 18px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
  }
  .site-nav.is-open .nav-collapse {
    display: flex;
  }
  .nav-links.nav-menu {
    margin: 0;
    width: 100%;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.nav-menu > .nav-item {
    width: 100%;
  }
  .nav-link {
    color: var(--navy);
    padding: 8px 0;
  }
  .has-dropdown > .nav-link {
    width: 100%;
    display: block;
    position: relative;
    padding-right: 22px;
  }
  .has-dropdown > .nav-link::before {
    position: absolute;
    right: 0;
    top: 50%;
    margin-left: 0;
    transform: translateY(-50%) rotate(45deg);
  }
  .nav-dropdown {
    position: relative;

    min-width: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    width: 100%;
    margin: 4px 0 0;
    padding: 8px 0 0 18px;
    border-left: 1px solid rgba(10, 31, 68, 0.12);
    z-index: auto;
  }
  .has-dropdown.is-open .nav-dropdown {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .nav-dropdown-link {
    padding: 8px 0;
    font-size: 11px;
    width: 100%;
    color: var(--navy);
  }
  .nav-cta-btn {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }
  .premium-nav {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(10, 31, 68, 0.1);
    padding: 14px 0;
  }
  .premium-nav.nav-scrolled {
    padding: 14px 0;
  }
  .career-panel {
    padding: 28px 24px;
  }
  .about-stats {
    gap: 10px;
  }
  .about-stat {
    padding: 12px 8px;
  }
  .about-stat-value {
    font-size: 1.2rem;
  }
  .career-cta-card {
    margin-left: 0;
    max-width: none;
    padding: 24px 22px;
  }
  .career-point {
    font-size: 13px;
    padding: 9px 10px;
  }
  .career-cta-actions {
    gap: 8px;
  }
  .contact-panel {
    padding: 24px;
  }
  .director-section {
    padding-top: 44px;
    padding-bottom: 24px;
  }
  .director-profile-box {
    margin-top: 20px;
  }
  .director-photo-wrap {
    min-height: 320px;
  }
  .director-content {
    padding: 24px 24px 26px;
  }
  .director-message {
    font-size: 0.98rem;
    line-height: 1.78;
  }
  .testimonial-section .testimonial-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .testimonial-section .avatar {
    width: 150px;
    height: 50px;
  }
  .testimonial-carousel .owl-item img.avatar {
    width: 150px;
  }
  .testimonial-section .testimonial-head .no-margin {
    font-size: 1.02rem;
  }
  .testimonial-carousel .owl-item {
    padding: 8px 8px 14px;
  }
  .customer-testimonial-card {
    padding: 20px;
  }
  .contact-cta-stack {
    width: 100%;
    align-items: stretch;
  }
  .contact-cta-stack .btn-main,
  .contact-cta-stack .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .site-booking-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    padding-bottom: 20px;
  }
  .footer-card {
    padding: 22px 18px;
  }
  .footer-contact-card .footer-list li {
    padding: 8px 9px;
  }
  .footer .social-links {
    justify-content: flex-start;
  }
  .footer-bottom {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
  .text-right-lg {
    text-align: left;
  }
  .cms-hero {
    padding: 132px 0 72px;
  }
  .cms-hero-content {
    padding: 18px 0;
  }
  .cms-intro-card {
    padding: 28px;
  }
}

@media (max-width: 575px) {
  .project-jump-nav-wrap {
    top: 72px;
  }
  .project-page-hero {
    min-height: 340px;
  }
  .project-page-hero-copy {
    padding: 120px 0 24px;
  }
  .project-page-hero h1 {
    font-size: 2.15rem;
  }
  .project-jump-nav {
    padding: 12px 0;
  }
  .project-jump-nav a {
    font-size: 10px;
    padding: 7px 10px;
  }
  .project-section-head h2 {
    font-size: 1.75rem;
  }
  .cms-hero {
    padding: 116px 0 58px;
  }
  .cms-hero-content h1 {
    font-size: 2.25rem;
  }
  .cms-intro-card {
    padding: 22px;
    border-radius: 22px;
  }
  .cms-faq .accordion-button {
    padding: 16px 18px;
  }
  .cms-faq .accordion-body {
    padding: 0 18px 18px;
  }
  .spec-editorial-head {
    margin-bottom: 24px;
  }
  .spec-editorial-head h2 {
    font-size: 1.95rem;
  }
  .spec-card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .spec-info-card {
    min-height: 0;
    padding: 15px 15px 16px;
  }
  .spec-callout {
    margin-top: 18px;
    padding: 20px;
  }
  .spec-callout-copy h3 {
    font-size: 1.55rem;
  }
  .spec-callout-tags span {
    width: 100%;
    justify-content: center;
  }
  .project-overview-media img {
    min-height: 260px;
  }
  .project-walkthrough-media img {
    min-height: 240px;
  }
  .walkthrough-video-shell {
    width: 92vw;
  }
  .walkthrough-video-caption {
    font-size: 13px;
  }
  .project-overview-card,
  .project-spec-note,
  .project-location-card,
  .project-walkthrough-copy,
  .project-enquiry-copy,
  .project-enquiry-form {
    padding: 20px;
  }
  .project-walkthrough-media {
    min-height: 260px;
  }
  .project-location-chip {
    flex-direction: column;
    align-items: flex-start;
  }
  .project-walkthrough-overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }
  .walkthrough-actions .btn-main,
  .walkthrough-actions .btn-outline {
    min-width: 0;
    width: 100%;
  }
  .projects-hero {
    min-height: 180px;
  }
  .projects-hero-copy {
    padding: 58px 0 24px;
  }
  .projects-hero h1 {
    font-size: 2.35rem;
  }
  .project-showcase-media img {
    height: 214px;
  }
  .project-showcase-body {
    padding: 12px 12px 13px;
  }
  .projects-showcase {
    padding-top: 52px;
    padding-bottom: 64px;
  }
  .projects-cta-copy h2 {
    font-size: 1.9rem;
  }
  .page-hero-copy,
  .page-hero-card {
    padding: 20px;
  }
  .project-overview-hero {
    padding: 110px 0 22px;
  }
  .project-overview-hero h1 {
    font-size: 2rem;
  }
  .project-page-breadcrumb .container {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .project-specs li {
    flex-direction: column;
    align-items: flex-start;
  }
  .project-specs strong {
    text-align: left;
  }
  .project-thumb-card img {
    height: 230px;
  }
  .project-thumb-title {
    font-size: 1.06rem;
    padding: 12px 14px 14px;
  }
  .project-detail-hero {
    padding: 112px 0 52px;
  }
  .project-detail-summary {
    padding: 20px;
  }
  .project-detail-summary h1 {
    font-size: 2rem;
  }
  .detail-amenity-card {
    padding: 12px;
  }
  .floor-plan-card {
    padding: 14px;
  }
  .detail-spec-row {
    flex-direction: column;
  }
  .detail-spec-row dd {
    text-align: left;
  }
  .hero-slide {
    height: 70vh;
  }
  .gallery-item img {
    height: 150px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .career-panel {
    padding: 22px 16px;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .about-stat {
    text-align: left;
    padding: 12px 14px;
  }
  .career-highlights span,
  .contact-meta a {
    width: 100%;
  }
  .career-cta-card {
    padding: 20px 16px;
  }
  .career-role-list li {
    font-size: 12px;
  }
  .career-cta-actions .btn-main,
  .career-cta-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .contact-panel {
    padding: 20px;
  }
  .director-section {
    padding-top: 30px;
    padding-bottom: 18px;
  }
  .director-underline {
    width: 58px;
    height: 3px;
    margin-top: 12px;
  }
  .director-profile-box {
    margin-top: 16px;
  }
  .director-photo-wrap {
    min-height: 260px;
  }
  .director-content {
    padding: 20px 18px;
  }
  .director-quote-icon {
    font-size: 26px;
    margin-bottom: 8px;
  }
  .director-message {
    font-size: 0.95rem;
    line-height: 1.72;
  }
  .director-signoff strong {
    font-size: 1rem;
  }
  .testimonial-card {
    padding: 22px;
  }
  .customer-testimonial-card {
    padding: 18px;
  }
  .customer-thumb {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }
  .customer-testimonial-card p {
    font-size: 0.95rem;
  }
  .testimonial-section .avatar {
    width: 132px;
    height: 44px;
  }
  .testimonial-carousel .owl-item img.avatar {
    width: 132px;
  }
  .testimonial-section .testimonial-card p {
    font-size: 0.98rem;
  }
  .testimonial-carousel .owl-item {
    padding: 6px 4px 12px;
  }
  .footer {
    padding: 64px 0 24px;
  }
  .footer .social-links {
    justify-content: center;
  }
  .footer-card {
    padding: 20px 16px;
  }
  .footer-contact-actions a {
    width: 100%;
  }
  .footer-meta {
    gap: 6px;
  }
  .footer-map iframe {
    height: 150px;
  }
  .footer-bottom {
    font-size: 12px;
  }
  .scroll-top-btn {
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }
}

@media (min-width: 992px) {
  .order-lg-first {
    order: 1;
  }
  .order-lg-last {
    order: 2;
  }
  .text-right-lg {
    text-align: right;
  }
}
