/* ============================================================
   Demo Builders — Shared Stylesheet
   Base tokens + components extracted from original single page,
   then extended for the multi-page site (subpage headers,
   breadcrumbs, project-detail sidebar, timeline, video, forms,
   testimonials grid, legal pages, 404, etc.).
   ============================================================ */

/* ===================== RESET & TOKENS ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
:root {
  --navy: #0a1f3d;
  --navy-deep: #071527;
  --navy-panel: #0f2a4a;
  --gold: #c9a227;
  --gold-light: #e8c766;
  --white: #ffffff;
  --paper: #f6f7f9;
  --paper-2: #eff1f4;
  --ink: #101826;
  --ink-soft: #4b5567;
  --line: rgba(10, 31, 61, 0.1);
  --shadow-sm: 0 2px 10px rgba(10, 31, 61, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 31, 61, 0.1);
  --shadow-lg: 0 24px 60px rgba(10, 31, 61, 0.16);
  --radius: 14px;
  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.01em;
}
p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
section {
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}
.section-head {
  max-width: 680px;
  margin-bottom: 52px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
}
.section-head p {
  margin-top: 16px;
  font-size: 17px;
}
.section-pad {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .section-pad {
    padding: 64px 0;
  }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  border-radius: 8px;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    border-color 0.35s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(201, 162, 39, 0.35);
}
.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  border: 1.5px solid var(--line);
  color: var(--navy);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}
.btn-wide {
  width: 100%;
}
/* ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ===================== NAVBAR ===================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}
#navbar.scrolled,
body.solid-nav #navbar {
  padding: 14px 0;
  background: rgba(10, 31, 61, 0.94);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 21px;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo .mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(150deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo .mark svg {
  width: 20px;
  height: 20px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}
.burger {
  display: none;
  width: 26px;
  height: 20px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1100;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
}
.mobile-menu.open {
  transform: translateY(0);
}
.mobile-menu a {
  color: var(--white);
  font-family: "Fraunces", serif;
  font-size: 24px;
  font-weight: 500;
}
.mobile-menu .close-x {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 30px;
  height: 30px;
  color: var(--white);
  font-size: 22px;
}
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .nav-call {
    display: none;
  }
  .burger {
    display: flex;
  }
}

/* ===================== HERO ===================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(7, 21, 39, 0.78) 0%,
      rgba(7, 21, 39, 0.55) 40%,
      rgba(7, 21, 39, 0.88) 100%
    ),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2000&auto=format&fit=crop")
      center/cover no-repeat;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(232, 199, 102, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 199, 102, 0.1) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 30% 30%, black 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 60px;
}
.hero-corner {
  position: absolute;
  width: 46px;
  height: 46px;
  border-color: var(--gold);
  opacity: 0.9;
  z-index: 3;
}
.hero-corner.tl {
  top: 120px;
  left: 24px;
  border-top: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
}
.hero-corner.br {
  bottom: 40px;
  right: 24px;
  border-bottom: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
}
@media (max-width: 768px) {
  .hero-corner {
    display: none;
  }
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(232, 199, 102, 0.4);
  border-radius: 30px;
  color: var(--gold-light);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  background: rgba(232, 199, 102, 0.06);
}
.hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
}
#hero h1 {
  color: var(--white);
  font-size: clamp(40px, 6.4vw, 80px);
  font-weight: 600;
  max-width: 880px;
  letter-spacing: -0.015em;
}
#hero h1 em {
  color: var(--gold-light);
  font-style: normal;
}
#hero .sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 560px;
  margin-top: 24px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 42px;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 80px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.hero-stats .hs {
  background: rgba(10, 31, 61, 0.35);
  padding: 22px 18px;
  text-align: left;
}
.hero-stats .hs strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--gold-light);
  font-weight: 600;
}
.hero-stats .hs span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 56px;
  }
}
.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px;
  height: 30px;
  background: linear-gradient(var(--gold-light), transparent);
  animation: scrollPulse 1.8s infinite;
}
@keyframes scrollPulse {
  0% {
    opacity: 0.2;
    transform: scaleY(0.4);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
  100% {
    opacity: 0.2;
    transform: scaleY(0.4);
  }
}

/* ===================== REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* ===================== OVERVIEW / STATS ===================== */
#overview {
  background: var(--paper);
}
.overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 920px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.overview-copy p {
  font-size: 16.5px;
  margin-top: 18px;
}
.overview-copy p:first-of-type {
  margin-top: 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 39, 0.4);
}
.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(10, 31, 61, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy);
}
.stat-card strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 34px;
  color: var(--navy);
  font-weight: 600;
}
.stat-card span {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ===================== SERVICES ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.4s;
}
.service-card:hover .service-icon {
  background: var(--gold);
}
.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold-light);
  transition: stroke 0.4s;
}
.service-card:hover .service-icon svg {
  stroke: var(--navy-deep);
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 15px;
}
.service-card .benefits {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card .benefits li {
  font-size: 13.5px;
  color: var(--ink-soft);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.service-card .benefits li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
}
.service-card .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy);
}
.service-card .card-cta::after {
  content: "→";
  transition: transform 0.3s;
}
.service-card:hover .card-cta::after {
  transform: translateX(4px);
}

/* Detailed services page rows */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}
.service-row:nth-child(even) .service-row-media {
  order: 2;
}
@media (max-width: 820px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-row:nth-child(even) .service-row-media {
    order: 0;
  }
}
.service-row-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.service-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.service-row:hover .service-row-media img {
  transform: scale(1.05);
}
.service-row h3 {
  font-size: 28px;
  margin-bottom: 14px;
}
.service-row p {
  font-size: 16px;
  margin-bottom: 16px;
}

/* ===================== PROJECTS ===================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.project-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.project-card:hover .project-img img {
  transform: scale(1.08);
}
.status-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}
.status-pill.completed {
  background: rgba(34, 142, 84, 0.92);
  color: #fff;
}
.status-pill.ongoing {
  background: rgba(201, 162, 39, 0.95);
  color: var(--navy-deep);
}
.status-pill.upcoming {
  background: rgba(10, 31, 61, 0.9);
  color: #fff;
}
.type-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  z-index: 2;
}
.project-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.project-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.project-loc svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
}
.project-body h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.project-body p {
  font-size: 14.5px;
  margin-bottom: 18px;
}
.project-meta {
  display: flex;
  gap: 14px;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.project-meta span strong {
  display: block;
  color: var(--navy);
  font-family: "Fraunces", serif;
  font-size: 14px;
}
.project-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--line);
  padding-top: 16px;
  margin-top: auto;
}
.project-value {
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 16px;
}
.project-value span {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.view-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
}
.view-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}
.project-card:hover .view-link svg {
  transform: translateX(4px);
}

/* ===================== WHY CHOOSE US ===================== */
#why {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#why::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 48px 48px;
}
#why .section-head h2,
#why .section-head p {
  color: rgba(255, 255, 255, 0.92);
}
#why .section-head p {
  color: rgba(255, 255, 255, 0.65);
}
#why .eyebrow {
  color: var(--gold-light);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.why-card {
  background: var(--navy-deep);
  padding: 36px 30px;
  transition: background 0.35s;
}
.why-card:hover {
  background: #0c2240;
}
.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-light);
}
.why-card h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 8px;
}
.why-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14.5px;
}

/* ===================== GALLERY ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: 14px;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 120px;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 110px;
  }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.12);
}
.gallery-item .ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(7, 21, 39, 0.85) 100%
  );
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.gallery-item:hover .ov {
  opacity: 1;
}
.gallery-item .ov span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.gallery-item.g-tall {
  grid-row: span 2;
}
.gallery-item.g-wide {
  grid-column: span 2;
}
.gallery-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.gfilter {
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  transition: 0.3s;
  background: transparent;
}
.gfilter.active,
.gfilter:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: rgba(201, 162, 39, 0.08);
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 15, 27, 0.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
#lightbox.open {
  display: flex;
}
#lightbox img {
  max-width: 90vw;
  max-height: 84vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
#lightbox .lb-close,
#lightbox .lb-nav {
  position: absolute;
  color: #fff;
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.05);
}
#lightbox .lb-close:hover,
#lightbox .lb-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}
#lightbox .lb-close {
  top: 30px;
  right: 30px;
}
#lightbox .lb-prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
#lightbox .lb-next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 700px) {
  #lightbox .lb-prev,
  #lightbox .lb-next {
    display: none;
  }
}

/* ===================== PROCESS ===================== */
#process {
  background: var(--paper);
}
.process-track {
  position: relative;
  padding-top: 20px;
}
.process-line {
  position: absolute;
  top: 46px;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--line) 0 8px,
    transparent 8px 16px
  );
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  position: relative;
}
@media (max-width: 980px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-line {
    display: none;
  }
}
@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
.process-step {
  text-align: left;
}
.proc-num {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50%;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-size: 16.5px;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13.5px;
}

/* ===================== TEAM ===================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}
.team-card {
  text-align: center;
}
.team-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1.05;
  margin-bottom: 18px;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.team-card:hover .team-photo img {
  transform: scale(1.06);
}
.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 31, 61, 0.5));
}
.team-social {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  transition:
    opacity 0.3s,
    transform 0.3s;
  transform: translateY(8px);
}
.team-card:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}
.team-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-social svg {
  width: 15px;
  height: 15px;
  stroke: var(--navy);
}
.team-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
.team-card .role {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===================== TESTIMONIALS ===================== */
#testimonials {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
#testimonials .section-head h2,
#testimonials .section-head p {
  color: #fff;
}
#testimonials .section-head p {
  color: rgba(255, 255, 255, 0.6);
}
#testimonials .eyebrow {
  color: var(--gold-light);
}
.t-carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.t-track {
  overflow: hidden;
}
.t-slides {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.t-slide {
  flex: 0 0 100%;
  padding: 0 6px;
}
.t-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 44px 40px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.t-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 22px;
  color: var(--gold-light);
  font-size: 18px;
}
.t-card p.quote {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  font-style: italic;
  line-height: 1.8;
  font-family: "Fraunces", serif;
  font-weight: 400;
}
.t-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.t-person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.t-person .info {
  text-align: left;
}
.t-person strong {
  display: block;
  color: #fff;
  font-size: 14.5px;
}
.t-person span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12.5px;
}
.t-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}
.t-controls button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.t-controls button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}
.t-controls button svg {
  width: 16px;
  height: 16px;
}

/* Testimonials PAGE grid (Google-review style cards) */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-head img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.review-head .who strong {
  display: block;
  color: var(--navy);
  font-size: 14.5px;
}
.review-head .who span {
  font-size: 12.5px;
  color: var(--ink-soft);
}
.review-card .stars {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 8px;
}
.review-card p {
  font-size: 14.5px;
  line-height: 1.7;
}
.review-card .foot {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-card .foot .g-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.review-card .foot .g-badge::before {
  content: "G";
  color: #4285f4;
  font-weight: 800;
  font-family: "Fraunces", serif;
}

/* Video testimonial grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
.video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.video-card:hover img {
  transform: scale(1.05);
}
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 21, 39, 0.75));
}
.video-card .play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s;
}
.video-card:hover .play {
  transform: scale(1.08);
}
.video-card .play::before {
  content: "";
  border-left: 16px solid var(--navy-deep);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
.video-card .cap {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
}

/* ===================== CERTIFICATIONS ===================== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
}
.cert-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s;
}
.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.cert-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.cert-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
}
.cert-card h3 {
  font-size: 15.5px;
  margin-bottom: 6px;
}
.cert-card p {
  font-size: 13px;
}

/* ===================== FAQ ===================== */
#faq {
  background: var(--paper);
  max-width: 840px !important;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  text-align: left;
  font-family: "Fraunces", serif;
  font-size: 17px;
  color: var(--navy);
  font-weight: 500;
}
.faq-q .plus {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
  margin-left: 20px;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: 0.35s;
}
.faq-q .plus::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq-q .plus::after {
  height: 100%;
  width: 2px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.faq-item.open .plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a p {
  padding: 0 4px 22px;
  font-size: 15px;
}

/* ===================== CONTACT ===================== */
#contact {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
}
@media (max-width: 920px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 34px;
  color: #fff;
}
.contact-info-card h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 8px;
}
.contact-info-card > p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 30px;
  font-size: 14.5px;
}
.cinfo-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.cinfo-row:first-of-type {
  border-top: none;
}
.cinfo-row .ic {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(201, 162, 39, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cinfo-row .ic svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-light);
}
.cinfo-row strong {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.cinfo-row span,
.cinfo-row a {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}
.map-wrap {
  margin-top: 26px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.map-wrap iframe {
  width: 100%;
  height: 200px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}
.contact-form {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 40px 34px;
  border: 1px solid var(--line);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14.5px;
  background: #fff;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  color: var(--ink);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-success {
  display: none;
  background: rgba(34, 142, 84, 0.1);
  color: #1d7a47;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 14px;
}
.form-success.show {
  display: block;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.65);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand .logo {
  color: #fff;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 14px;
  max-width: 280px;
  margin-bottom: 22px;
}
.foot-social {
  display: flex;
  gap: 10px;
}
.foot-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.foot-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.foot-social svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}
.foot-social a:hover svg {
  stroke: var(--navy-deep);
}
footer h4 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}
footer ul li {
  margin-bottom: 12px;
  font-size: 14.5px;
}
footer ul li a {
  transition:
    color 0.25s,
    padding-left 0.25s;
}
footer ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.foot-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}
.foot-contact svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.newsletter {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}
.newsletter input {
  flex: 1;
  padding: 11px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: inherit;
  font-size: 13.5px;
}
.newsletter input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}
.newsletter button {
  padding: 0 16px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 13px;
}
.newsletter button:hover {
  background: var(--gold-light);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
.foot-bottom a {
  color: rgba(255, 255, 255, 0.5);
}
.foot-bottom a:hover {
  color: var(--gold-light);
}

/* ===================== FLOATING BUTTONS ===================== */
.float-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s var(--ease);
  position: relative;
}
.fab:hover {
  transform: scale(1.08);
}
.fab-whatsapp {
  background: #25d366;
}
.fab-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.fab-call {
  background: var(--gold);
}
.fab-call svg {
  width: 24px;
  height: 24px;
  stroke: var(--navy-deep);
}
.fab-top {
  background: var(--navy);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.fab-top.show {
  opacity: 1;
  pointer-events: auto;
}
.fab-top svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}
.fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.5;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* ===================== SUBPAGE HEADER ===================== */
.subhead {
  position: relative;
  padding: 180px 0 90px;
  background:
    linear-gradient(180deg, rgba(7, 21, 39, 0.85), rgba(7, 21, 39, 0.75)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2000&auto=format&fit=crop")
      center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.subhead::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(232, 199, 102, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 199, 102, 0.1) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 20% 30%, black 0%, transparent 65%);
}
.subhead .container {
  position: relative;
  z-index: 2;
}
.subhead .eyebrow {
  color: var(--gold-light);
}
.subhead h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.015em;
}
.subhead p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  max-width: 640px;
  margin-top: 16px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: var(--gold-light);
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb .sep {
  opacity: 0.5;
}

/* ===================== ABOUT — Vision/Mission/Values ===================== */
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 820px) {
  .vmv-grid {
    grid-template-columns: 1fr;
  }
}
.vmv-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s;
}
.vmv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.vmv-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(201, 162, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.vmv-card .ic svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
}
.vmv-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Chairman quote */
.chairman-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .chairman-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.chairman-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1.1;
  box-shadow: var(--shadow-md);
}
.chairman-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chairman-quote {
  font-family: "Fraunces", serif;
  font-size: 22px;
  line-height: 1.5;
  color: var(--navy);
  font-style: italic;
}
.chairman-quote::before {
  content: "“";
  font-size: 80px;
  line-height: 0;
  color: var(--gold);
  margin-right: 6px;
  vertical-align: -24px;
}
.chairman-sig {
  margin-top: 24px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: var(--navy);
}
.chairman-sig span {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* Company timeline (vertical) */
.timeline {
  position: relative;
  padding: 20px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
@media (max-width: 640px) {
  .timeline::before {
    left: 32px;
  }
}
.tl-item {
  position: relative;
  padding-left: 180px;
  padding-bottom: 36px;
}
@media (max-width: 640px) {
  .tl-item {
    padding-left: 70px;
  }
}
.tl-year {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  font-family: "Fraunces", serif;
  font-size: 24px;
  color: var(--gold);
  font-weight: 600;
}
@media (max-width: 640px) {
  .tl-year {
    font-size: 18px;
    width: auto;
  }
}
.tl-item::after {
  content: "";
  position: absolute;
  left: 112px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--gold);
}
@media (max-width: 640px) {
  .tl-item::after {
    left: 24px;
  }
}
.tl-item h3 {
  font-size: 19px;
  margin-bottom: 6px;
}
.tl-item p {
  font-size: 15px;
}

/* Featured video */
.feat-video {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 21/9;
  box-shadow: var(--shadow-lg);
}
.feat-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feat-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 21, 39, 0.3),
    rgba(7, 21, 39, 0.6)
  );
}
.feat-video .play-lg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.55);
  transition: transform 0.3s;
}
.feat-video:hover .play-lg {
  transform: scale(1.08);
}
.feat-video .play-lg::before {
  content: "";
  border-left: 22px solid var(--navy-deep);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.feat-video .cap {
  position: absolute;
  left: 30px;
  bottom: 26px;
  color: #fff;
  z-index: 2;
}
.feat-video .cap h3 {
  color: #fff;
  font-size: 24px;
}
.feat-video .cap span {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Video modal */
#videoModal {
  position: fixed;
  inset: 0;
  background: rgba(7, 15, 27, 0.94);
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
#videoModal.open {
  display: flex;
}
#videoModal .vm-inner {
  width: min(960px, 100%);
  aspect-ratio: 16/9;
  position: relative;
}
#videoModal iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 0;
}
#videoModal .vm-close {
  position: absolute;
  top: -46px;
  right: 0;
  color: #fff;
  font-size: 26px;
}

/* ===================== PROJECT DETAIL ===================== */
.pd-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  overflow: hidden;
  background: var(--navy-deep);
}
.pd-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.pd-hero .container {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 50px;
  color: #fff;
}
.pd-hero h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 54px);
}
.pd-hero .pd-meta {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.pd-hero .pd-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pd-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 44px;
  align-items: start;
}
@media (max-width: 960px) {
  .pd-layout {
    grid-template-columns: 1fr;
  }
}
.pd-section {
  margin-bottom: 44px;
}
.pd-section h2 {
  font-size: 26px;
  margin-bottom: 16px;
}
.pd-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pd-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}
.pd-gallery img:hover {
  transform: scale(1.02);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 560px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.amenity {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px;
  background: var(--paper);
  border-radius: 10px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
}
.amenity::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
}
.specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 560px) {
  .specs-list {
    grid-template-columns: 1fr;
  }
}
.specs-list div {
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 14.5px;
}
.specs-list div strong {
  color: var(--navy);
  font-weight: 600;
}
.specs-list div span {
  color: var(--ink-soft);
  text-align: right;
}
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 820px) {
  .nearby-grid {
    grid-template-columns: 1fr;
  }
}
.nearby-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
}
.nearby-card h4 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nearby-card h4::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.nearby-card ul li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13.5px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
}
.nearby-card ul li:last-child {
  border-bottom: 0;
}
.nearby-card ul li em {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
}

.pd-sidebar {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.pd-sidebar h3 {
  font-size: 20px;
  margin-bottom: 14px;
}
.pd-sidebar .price {
  font-family: "Fraunces", serif;
  font-size: 26px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.pd-sidebar .price-note {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.pd-sidebar .form-group {
  margin-bottom: 14px;
}
.pd-sidebar .btn {
  width: 100%;
  margin-bottom: 10px;
}
.pd-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.pd-actions .btn {
  flex: 1;
  padding: 12px;
  font-size: 13px;
}
.pd-actions .btn-wa {
  background: #25d366;
  color: #fff;
}
.pd-actions .btn-wa:hover {
  background: #1eb757;
}

/* Floor plan */
.floorplan {
  background: var(--paper);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.floorplan img {
  width: 240px;
  border-radius: 8px;
  background: #fff;
}
@media (max-width: 560px) {
  .floorplan {
    flex-direction: column;
  }
  .floorplan img {
    width: 100%;
  }
}
.floorplan .fp-info h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 6px;
}
.floorplan .fp-info p {
  font-size: 13.5px;
}

/* Highlights list */
.highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 560px) {
  .highlights {
    grid-template-columns: 1fr;
  }
}
.highlights div {
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
}

/* Construction status */
.status-bar {
  margin-top: 14px;
}
.status-bar .lbl {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--ink-soft);
}
.status-bar .bar {
  height: 10px;
  border-radius: 6px;
  background: var(--paper-2);
  overflow: hidden;
}
.status-bar .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 6px;
  transition: width 1.4s var(--ease);
}

/* ===================== LEGAL PAGES ===================== */
.legal {
  max-width: 880px;
  margin: 0 auto;
}
.legal h2 {
  font-size: 24px;
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal h3 {
  font-size: 18px;
  margin-top: 22px;
  margin-bottom: 8px;
}
.legal p,
.legal li {
  font-size: 15.5px;
  margin-bottom: 12px;
}
.legal ul {
  padding-left: 22px;
  list-style: disc;
}
.legal ul li {
  list-style: disc;
}
.legal .updated {
  color: var(--ink-soft);
  font-size: 13.5px;
  margin-bottom: 24px;
}

/* ===================== 404 ===================== */
.err-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--navy-deep), var(--navy));
  color: #fff;
  text-align: center;
  padding: 120px 24px;
}
.err-wrap h1 {
  color: var(--gold-light);
  font-size: clamp(80px, 15vw, 180px);
  line-height: 1;
}
.err-wrap h2 {
  color: #fff;
  font-size: 28px;
  margin-top: 10px;
}
.err-wrap p {
  color: rgba(255, 255, 255, 0.7);
  margin: 14px auto 30px;
  max-width: 460px;
}

/* ===================== LOADER ===================== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s ease 0.1s,
    visibility 0.5s ease 0.1s;
}
#preloader.done {
  opacity: 0;
  visibility: hidden;
}
.loader-ring {
  width: 52px;
  height: 52px;
  border: 3px solid rgba(232, 199, 102, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* utility */
.text-center {
  text-align: center;
}
.mt-40 {
  margin-top: 40px;
}
.mt-24 {
  margin-top: 24px;
}
.mb-24 {
  margin-bottom: 24px;
}
::selection {
  background: var(--gold-light);
  color: var(--navy-deep);
}
.skip-link {
  position: absolute;
  left: -999px;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
  background: #fff;
  padding: 8px 14px;
  z-index: 3000;
  border-radius: 6px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
