/* ===== Brand fonts: MADE Mirage (primary) + Inter (secondary) ===== */
@font-face {
  font-family: "MADE Mirage";
  src: url("assets/fonts/MadeMirage-Thin.otf") format("opentype");
  font-weight: 200; font-style: normal; font-display: optional;
}
@font-face {
  font-family: "MADE Mirage";
  src: url("assets/fonts/MadeMirage-Regular.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: optional;
}
@font-face {
  font-family: "MADE Mirage";
  src: url("assets/fonts/MadeMirage-Medium.otf") format("opentype");
  font-weight: 500; font-style: normal; font-display: optional;
}
@font-face {
  font-family: "MADE Mirage";
  src: url("assets/fonts/MadeMirage-Bold.otf") format("opentype");
  font-weight: 600 700; font-style: normal; font-display: optional;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Light.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: optional;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: optional;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: optional;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: optional;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: optional;
}

:root {
  /* Eleven Eleven Developers brand palette */
  --green: #0B3B2F;      /* primary dark green */
  --green-2: #114A3B;    /* lifted green for panels */
  --gold: #E0AD20;       /* brand golden accent */
  --gold-dark: #BF9013;
  --cream: #FFFFFF;      /* base background (brand white) */
  --cream-2: #F3F6F3;    /* subtle green-tinted section bg */
  --navy: #0B3B2F;       /* alias -> green (all dark sections become green) */
  --navy-2: #114A3B;
  --ink: #24332E;        /* body text: deep green-charcoal */
  --muted: #5E6B64;      /* muted green-gray */
  --serif: "MADE Mirage", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

/* Hide the native scrollbar — we use a custom rail (below) */
html { scrollbar-width: none; }
::-webkit-scrollbar { width: 0; height: 0; display: none; }

/* Custom scrollbar: gold bar inside a white rounded box/rail */
.scroll-rail {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 8px;
  background: #ffffff;
  border-left: 1px solid #e7e7db;
  z-index: 84;
}
.scroll-thumb {
  position: absolute;
  left: 1px;
  right: 1px;
  top: 2px;
  height: 60px;
  min-height: 40px;
  background: var(--gold);
  border-radius: 6px;
  cursor: grab;
  transition: background .2s ease;
}
.scroll-thumb:hover { background: var(--gold-dark); }
.scroll-thumb:active { cursor: grabbing; }
/* Touch devices scroll natively — hide the custom rail on mobile.
   !important overrides the inline display:block that script.js sets. */
@media (max-width: 1250px) { .scroll-rail { display: none !important; } }

body {
  font-family: var(--sans);
  font-weight: 300;              /* Inter Light — lighter, less compressed body text */
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: min(1200px, 90%); margin: 0 auto; }
.center { text-align: center; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block;
  padding: 16px 42px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s ease;
  border: none;
  border-radius: 8px;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #fff; }

/* ---------------- Brand / Logo ---------------- */
.brand { display: inline-flex; align-items: center; text-align: center; line-height: 1; }
.brand-logo { height: 64px; width: auto; display: block; }
.site-header.scrolled .brand-logo { height: 56px; }
.footer-brand .brand-logo { height: 56px; }
@media (max-width: 1250px) { .brand-logo { height: 52px; } }
.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--gold);
}
.brand-name sup { font-size: 10px; top: -1em; }
.brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 8px;
  color: var(--gold);
  margin-top: 4px;
}

/* ---------------- Header ---------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 120px;
  display: flex;
  align-items: center;
  transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
/* Auto-hide: after 30% scroll the header slides up on scroll-down,
   and slides back into view on scroll-up. */
.site-header.nav-hidden { transform: translateY(-100%); }
.nav {
  width: min(1560px, 98%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 44px;
}
.nav-links { display: flex; gap: 38px; }
.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }
.nav-links a {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* Projects dropdown submenu (desktop: hover to reveal) */
.has-submenu { position: relative; }
.submenu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(8px);
  min-width: 220px;
  padding: 8px 0;
  background: var(--navy);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .3);
  border-top: 2px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 200;
}
.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu li { margin: 0; }
.submenu a {
  display: block;
  padding: 11px 22px;
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: none;
  white-space: nowrap;
  color: rgba(255, 255, 255, .82);
  transition: background .18s ease, color .18s ease;
}
.submenu a:hover {
  background: rgba(255, 255, 255, .07);
  color: var(--gold);
}
/* The injected mobile "back" button is hidden everywhere by default; the mobile
   menu re-shows it inside the slide-in submenu panel only. */
.submenu-back { display: none; }

/* Shared inner-page banner background (Our Story, Inspiration, Projects, Blog,
   Contact, Design Philosophy, Location, single post). One image across all. */
.page-head,
.abt-hero,
.ps-hero,
.pg-hero {
  background-image: url('assets/img/page-hero.jpg') !important;
}

/* Contact form status note */
.form-note {
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
}
.form-note.ok { background: #eaf3ea; color: #2e6b34; border: 1px solid #bcd9bd; }
.form-note.err { background: #fbeaea; color: #9a3232; border: 1px solid #e2b6b6; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px; height: 2px; background: #fff; display: block;
}

/* ---------------- Floating contact ---------------- */
/* One tall gold "portrait" panel flush to the right edge, holding the three
   white circular icons stacked inside it. */
.floating-contact {
  position: fixed;
  right: 18px;                      /* floated off the right edge */
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--gold);
  padding: 14px 8px;
  border-radius: 34px;             /* fully rounded floating pill */
  box-shadow: 0 10px 26px rgba(0, 0, 0, .24);
}
/* Each link is a white circular icon on the gold panel */
.floating-contact a {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}
.floating-contact .fc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.floating-contact a:hover {
  transform: scale(1.09);
  background: var(--green);
  color: #fff;
}
/* WhatsApp button: the supplied WhatsApp logo on a white circle (so the gold
   badge stays visible and separates from the gold panel behind it). */
.floating-contact a.fc-wa { background: #fff; padding: 0; }
.floating-contact a.fc-wa .fc-icon { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.floating-contact a.fc-wa img { width: 86%; height: 86%; border-radius: 50%; display: block; object-fit: cover; }
/* Label appears as a tooltip to the LEFT of the icon on hover */
.floating-contact .fc-label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--green);
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  transition: opacity .25s ease, transform .25s ease;
}
.floating-contact a:hover .fc-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Back-to-top button */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  z-index: 95;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background .25s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-dark); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
/* Hero slider: stacked full-bleed slides, cross-faded by script.js */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-image: var(--bg-d);       /* desktop banner */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}
/* On phones, use the separate mobile banner (falls back to desktop when none set). */
@media (max-width: 768px) {
  .hero-slide { background-image: var(--bg-m); }
}
.hero-slide.active {
  opacity: 1;
  animation: slowZoom 18s ease-in-out infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1);} to { transform: scale(1.08);} }
.hero-overlay {
  position: absolute; inset: 0;
  background: none;
}
.hero-content { position: relative; z-index: 2; padding: 0 20px clamp(56px, 9vh, 110px); }
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 7.4vw, 6.4rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.hero-tagline {
  margin: 26px auto 40px;
  max-width: 640px;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: .3px;
}
.hero-dots {
  position: absolute;
  left: 40px; top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-dots span {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.8);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.hero-dots span:hover { transform: scale(1.35); background: rgba(255,255,255,.6); }
.hero-dots span.active { background: var(--gold); border-color: var(--gold); }

/* ---------------- Mission ---------------- */
.mission {
  padding: 150px 0;
  text-align: center;
  /* darkened misty-hills photo — a normal scrolling cover (a fixed background
     causes a phantom right-gap / horizontal overflow on many mobile browsers) */
  background:
    linear-gradient(rgba(11, 59, 47, .58), rgba(11, 59, 47, .58)),
    url('https://images.unsplash.com/photo-1470252649378-9c29740c9fa8?auto=format&fit=crop&w=1920&q=80')
    center / cover no-repeat scroll;
}
.mission-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.25;
  max-width: 900px;
  margin: 0 auto 32px;
  color: #fff;
}
.mission-text {
  max-width: 760px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, .9);
  font-size: 1.05rem;
  font-weight: 400;
}
/* The "More About" button sits on a dark photo now — invert it for contrast */
.mission .btn-outline { border-color: rgba(255, 255, 255, .8); color: #fff; }
.mission .btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }
@media (max-width: 1250px) {
  .floating-contact { right: 16px; }
}
/* Smaller floating contact panel on phones, floated off the right edge */
@media (max-width: 768px) {
  .floating-contact { right: 12px; padding: 11px 7px; gap: 9px; border-radius: 30px; }
  .floating-contact a { width: 36px; height: 36px; font-size: 14px; }
  .floating-contact .fc-label { display: none; }
}

/* ---------------- Section shared ---------------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 400;
  color: var(--gold);
  text-align: center;
  margin-bottom: 20px;
}
.eyebrow-light { color: var(--gold); }
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.3;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  color: var(--navy);
}
.section-title.light { color: #fff; }

/* ---------------- Projects ---------------- */
.projects {
  padding: 120px 0;
  background: var(--cream-2);
}
/* Constrain the Signature Collection so it has left/right padding like other sections */
.projects > .container { width: min(1280px, 90%); max-width: none; margin: 0 auto; padding-left: 0; padding-right: 0; }
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}
.project-img {
  height: 460px;
  background-size: cover;
  background-position: center;
  transition: transform .7s ease;
}
.project-card:hover .project-img { transform: scale(1.06); }
.project-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 34px;
  color: #fff;
  background: linear-gradient(0deg, rgba(10,12,20,.82) 0%, rgba(10,12,20,0) 100%);
}
.project-info h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
}
.project-info p {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 400;
  color: var(--gold);
  margin-top: 6px;
}
/* ---------------- Awards ---------------- */
.awards {
  padding: 120px 0;
  background: var(--navy);
  color: #fff;
}
.award-card {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 820px;
  margin: 0 auto 60px;
  padding: 40px;
  border: 1px solid rgba(201,164,92,.35);
  background: var(--navy-2);
}
.award-icon {
  font-size: 3rem;
  color: var(--gold);
  flex-shrink: 0;
}
.award-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.award-card p { color: rgba(255,255,255,.7); font-size: .98rem; }


/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding-top: 80px;
}
/* Footer content spans nearly full width (no 1200px cap like other sections) */
.site-footer > .container,
.site-footer .footer-bottom > .container {
  width: min(1720px, 94%);
  max-width: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr .8fr 1.2fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer-brand .brand-name { font-size: 26px; }
.footer-col h4 {
  color: #fff;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; transition: color .25s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 14px; line-height: 1.7; }
/* Quick Links as a two-column grid, filling row by row */
.footer-links {
  display: flex;
  flex-direction: column;
}
.footer-links a { white-space: nowrap; }
/* Enquiry rows: gold icon + text */
.footer-contact a { display: flex; align-items: center; gap: 12px; }
.footer-contact i { color: var(--gold); font-size: 15px; width: 18px; text-align: center; flex: 0 0 18px; }
.footer-tagline { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.72); margin: 18px 0 0; max-width: 34ch; }
.footer-bottom {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 14px; letter-spacing: .5px; color: rgba(255,255,255,.7); margin: 0; }
.footer-legal { display: flex; align-items: center; gap: 16px; }
.footer-legal a { font-size: 14px; color: rgba(255,255,255,.7); }
.footer-legal a:hover { color: var(--gold); }
.footer-legal .sep { color: rgba(255,255,255,.3); }
.socials { display: flex; gap: 14px; justify-content: flex-start; margin-top: 24px; }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--gold);
  transition: all .25s ease;
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ---------------- Responsive ---------------- */
/* Below the hamburger breakpoint the 4-col footer can't fit its nowrap content
   and the last column was overflowing the viewport (right-gap). Collapse to a
   2-col grid with a tighter gap across the whole tablet range. */
@media (max-width: 1250px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 50px; }
}
@media (max-width: 1250px) {
  .nav { grid-template-columns: 1fr auto 1fr; }
  /* transparent over the hero at the top; the .scrolled state (added by JS past
     60px) fades in the navy background, matching desktop */
  .site-header { height: 88px; }

  /* Header bar layout (menu closed) — logo left, toggle right, full width with a
     clean margin so the toggle stays visible and tappable */
  .nav { grid-template-columns: auto 1fr; width: 100%; max-width: none; padding: 0 20px; }
  .brand      { grid-column: 1; justify-self: start; }
  .nav-toggle { display: flex; grid-column: 2; justify-self: end; z-index: 130; }

  /* Link lists are hidden until the menu opens */
  .nav-links { display: none; }

  /* OPEN: one full-screen overlay; both lists flow as a single centred,
     scrollable column — no gap between groups, every link clickable */
  .nav.open {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    background: var(--navy);
    z-index: 120;
    padding: 96px 30px 48px;
    overflow-y: auto;
  }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    position: static;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    box-shadow: none;
  }
  /* Projects becomes a tap-to-expand accordion (collapsed by default) */
  .nav.open .has-submenu { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
  /* down-chevron after "Projects" that flips up when open */
  .nav.open .has-submenu > a::after {
    content: "\f178";                     /* Font Awesome long right arrow (fa-arrow-right-long) */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-left: 14px;
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
    border: 0;
    width: auto; height: auto;
    transform: none;
  }
  /* Submenu opens as a full-screen slide-in panel, so long lists never cut. */
  .nav.open .submenu {
    position: fixed;
    inset: 0;
    z-index: 125;
    transform: translateX(100%);
    visibility: visible;
    opacity: 1;
    background: var(--navy);
    box-shadow: none;
    border-top: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    max-height: none;
    overflow-y: auto;
    padding: 96px 30px 56px;
    transition: transform .32s ease;
  }
  .nav.open .has-submenu.submenu-open .submenu { transform: translateX(0); }
  .nav.open .submenu a { padding: 0; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255, 255, 255, .72); }
  /* Back button injected into each submenu panel (mobile only). */
  .submenu-back { display: none; }
  .nav.open .submenu .submenu-back {
    display: block;
    position: fixed;
    top: 30px;
    left: 26px;
    z-index: 126;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 6px 4px;
  }
  .nav.open .brand { display: block; position: fixed; top: 20px; left: 24px; margin: 0; z-index: 130; }
  .nav.open .brand .brand-logo { height: 40px; }
  /* Hide the logo while a submenu slide-panel is open (its Back button sits there). */
  .nav.open:has(.submenu-open) .brand { display: none; }
  /* the toggle stays pinned top-right as the close (X) button */
  .nav.open .nav-toggle { position: fixed; top: 30px; right: 26px; margin-right: 0; }

  /* hamburger animates into an X when the menu is open */
  .nav-toggle span { transition: transform .3s ease, opacity .2s ease; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
/* Small-desktop range: horizontal nav is shown but tight — shrink type, spacing
   and gaps so all 8 links + logo fit without cutting off. Below 1250px the
   hamburger menu takes over instead. Two tiers so the wider part of the range
   (where there's more room) keeps a comfortable font/gap. */
@media (min-width: 1251px) and (max-width: 1360px) {
  .nav { gap: 14px; }
  .nav-links { gap: 15px; }
  .nav-links a { font-size: 12px; letter-spacing: .2px; }
  .brand-logo { height: 46px; }
}
@media (min-width: 1361px) and (max-width: 1450px) {
  .nav { gap: 26px; }
  .nav-links { gap: 26px; }
  .nav-links a { font-size: 14px; letter-spacing: .6px; }
  .brand-logo { height: 52px; }
}
@media (max-width: 640px) {
  .project-grid { grid-template-columns: 1fr; }
  .mission, .projects, .awards { padding: 80px 0; }
  .hero-dots { display: none; }
  .award-card { flex-direction: column; text-align: center; }
  /* Footer on mobile: two items per row (brand spans full width) */
  .footer-grid { grid-template-columns: 1fr 1fr; text-align: left; gap: 30px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-links { justify-items: start; }
  .footer-contact a { word-break: break-word; }
  .footer-col p { word-break: break-word; }
}

/* =====================================================
   INNER PAGES
   ===================================================== */

/* Light page head (matches kanai.co.in inner pages) */
.page-head {
  position: relative;
  min-height: clamp(340px, 50vh, 500px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: 96px clamp(44px, 6vw, 68px);
  padding-inline: max(5%, calc((100% - 1200px) / 2));
  text-align: left;
  color: #fff;
  overflow: hidden;
  background: var(--green) center/cover no-repeat;
  background-image: url('assets/img/projects/villa8/g1.jpg');
}
.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(8,40,31,.6) 0%, rgba(8,40,31,.28) 46%, rgba(8,40,31,.82) 100%);
}
.page-head > * { position: relative; z-index: 1; }
.page-head .crumb {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.85);
  margin-bottom: 14px;
}
.page-head .crumb a { color: rgba(255,255,255,.85); }
.page-head .crumb a:hover { color: var(--gold); }
.page-head h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin: 0;
}
.page-hero-img {
  width: min(1200px, 92%);
  margin: 0 auto 20px;
  height: clamp(260px, 42vw, 560px);
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-2);
}

/* Team / management — flip cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
  max-width: 1000px;
  margin: 0 auto;
}
.flip-card {
  perspective: 1400px;
  height: 460px;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
  transform-style: preserve-3d;
}
.flip-card:hover .flip-inner,
.flip-card:focus-within .flip-inner {
  transform: rotateY(180deg);
}
.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 46px rgba(0, 0, 0, .16);
}
.flip-front {
  background-size: cover;
  background-position: center top;
  background-color: var(--cream-2);
}
.flip-front .flip-name {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 28px 22px;
  color: #fff;
  background: linear-gradient(0deg, rgba(10,12,20,.8), rgba(10,12,20,0));
  opacity: 0;
  transition: opacity .3s ease;
}
.flip-card:hover .flip-front .flip-name { opacity: 0; }
.flip-front .flip-name span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 400;
  color: var(--gold);
  margin-top: 4px;
}
.flip-front .flip-name b { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.flip-back {
  transform: rotateY(180deg);
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 40px;
  text-align: left;
}
.flip-back h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.flip-back .role {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 20px;
}
.flip-back p { color: rgba(255, 255, 255, .78); font-size: .95rem; line-height: 1.7; }
.flip-hint {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

/* Values row (Integrity / Commitment / Trust) */
.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.value-pill { padding: 40px 24px; }
.value-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px var(--cream-2), 0 0 0 7px var(--gold);
  transition: transform .3s ease;
}
.value-pill:hover .value-icon { transform: translateY(-4px); }
.value-icon img { width: 54px; height: 54px; display: block; }
.value-pill h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.5rem;
  letter-spacing: .5px;
  transition: color .3s ease;
}
.value-pill:hover h3 { color: var(--gold); }

/* Green scorecard (Kanai Pledge) */
/* Kanai Pledge: big statement + hairline rules */
.soft-rule { border: 0; border-top: 1px solid #e6e2d6; margin: 0; }
.pledge-statement {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.4;
  text-align: center;
  color: var(--navy);
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0;
}
.center-title { text-align: center; margin-bottom: 50px; }
/* Green Scorecard — plain columns on a light background */
.scorecard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.score { text-align: center; padding: 0; }
.score .sn { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--gold); line-height: 1; }
.score .sn .su { font-size: .42em; color: var(--gold); margin-left: 6px; letter-spacing: .5px; vertical-align: baseline; }
.score .sl { text-transform: uppercase; letter-spacing: 1.5px; font-size: 11px; font-weight: 400; color: var(--muted); margin-top: 14px; }

/* Blog grid + sidebar (News & Blog) */
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 30px; }
.post-card { display: flex; flex-direction: column; }
.post-card .pc-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
/* inner layer inherits the inline background-image and scales on hover, so the
   rounded corners stay crisp while the photo zooms */
.post-card .pc-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform .6s ease;
}
.post-card:hover .pc-thumb::after { transform: scale(1.08); }
@media (prefers-reduced-motion: reduce) {
  .post-card .pc-thumb::after,
  .post-card:hover .pc-thumb::after { transition: none; transform: scale(1); }
}
.post-card .pc-title {
  margin: 20px 0 10px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--ink);
}
.post-card .pc-title a { color: inherit; transition: color .2s ease; }
.post-card .pc-title a:hover { color: var(--gold); }
.post-card .pc-date {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}
/* Pill pagination */
.blog-pagination { display: flex; gap: 12px; justify-content: center; align-items: center; margin-top: 56px; }
.blog-pagination .pg {
  min-width: 40px; height: 40px; padding: 0 8px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #d9ccb6; border-radius: 50px;
  color: var(--ink); font-size: 14px; font-weight: 400;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.blog-pagination .pg-edge { padding: 0 20px; }
.blog-pagination .pg.active,
.blog-pagination a.pg:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
/* First/last page: the edge control has nowhere to go */
.blog-pagination .pg.is-disabled {
  color: #b9b1a3; border-color: #ece5da; cursor: default; pointer-events: none;
}
/* Sidebar */
.blog-sidebar { position: sticky; top: 110px; }
.blog-search {
  display: flex; align-items: center;
  border: 1.5px solid var(--ink); border-radius: 8px;
  padding: 10px 18px 10px 22px; margin-bottom: 40px;
}
.blog-search input {
  flex: 1; border: 0; background: transparent; outline: none;
  font-family: var(--sans); font-size: 15px; color: var(--ink);
}
.blog-search input::placeholder { color: var(--muted); }
.blog-search button { background: none; border: 0; color: var(--gold); font-size: 16px; cursor: pointer; padding: 4px; }
.pop-heading {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.4rem; text-transform: uppercase; color: var(--ink);
  margin-bottom: 26px;
}
.pop-list { list-style: none; }
.pop-list li { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid #d9d9d9; }
.pop-list li:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.pop-title {
  display: block; font-family: var(--serif); font-size: 1.1rem; font-weight: 400;
  line-height: 1.45; color: var(--ink); margin-bottom: 8px; transition: color .2s ease;
}
.pop-title:hover { color: var(--gold); }
.pop-date { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); }

/* Single blog post */
.post-single .ps-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.55rem, 2.9vw, 2.1rem); line-height: 1.25;
  color: var(--ink); margin-bottom: 14px;
}
.post-single .ps-date {
  display: block; font-size: 13px; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--muted); margin-bottom: 30px;
}
.post-single .ps-hero {
  width: 100%; aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  border-radius: 16px; margin-bottom: 34px;
}
.post-single .ps-body p {
  color: var(--muted); font-size: 1rem; line-height: 1.85; margin-bottom: 18px;
}
.post-single .ps-body p:last-child { margin-bottom: 0; }
.post-single .ps-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  margin-top: 50px; padding-top: 34px; border-top: 1px solid #e6e2d6;
}
.ps-nav-item a {
  display: block; font-family: var(--serif); font-size: 1.1rem; line-height: 1.4;
  color: var(--ink); margin-bottom: 8px; transition: color .2s ease;
}
.ps-nav-item a:hover { color: var(--gold); }
.ps-nav-item .ps-nav-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted);
}
.ps-nav .ps-next { text-align: right; }
@media (max-width: 640px) {
  .post-single .ps-nav { grid-template-columns: 1fr; gap: 24px; }
  .ps-nav .ps-next { text-align: left; }
}

/* Coming soon badge on villa cards */
.villa-card .soon {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  background: var(--gold); color: #fff;
  text-transform: uppercase; letter-spacing: 1.5px; font-size: 10px; font-weight: 400;
  padding: 6px 12px; border-radius: 2px;
}
.villa-card.disabled { cursor: default; }

@media (max-width: 980px) {
  .team-grid { grid-template-columns: 1fr; max-width: 480px; }
  .scorecard { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { grid-template-columns: 1fr; gap: 50px; }
  .blog-sidebar { position: static; }
}
@media (max-width: 640px) {
  .values-row { grid-template-columns: 1fr; }
  .scorecard { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* Page banner */
.page-banner {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.page-banner .banner-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-banner .banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,12,20,.55), rgba(10,12,20,.6));
}
.page-banner .banner-content { position: relative; z-index: 2; padding: 120px 20px 0; }
.page-banner .crumb {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 18px;
}
.page-banner h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-banner p.lead {
  margin: 22px auto 0;
  max-width: 620px;
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
}

/* Generic section */
.section { padding: 110px 0; }
.section.tinted { background: var(--cream-2); }
.section.dark { background: var(--navy); color: #fff; }
.section.dark .section-title { color: #fff; }
.section-head { max-width: 780px; margin: 0 auto 64px; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section.dark .section-head p { color: rgba(255,255,255,.7); }

/* Two-column split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  height: 480px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(0,0,0,.15);
}
.split-text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.55rem, 2.9vw, 2.25rem);
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 22px;
}
.section.dark .split-text h2 { color: #fff; }
.split-text p { color: var(--muted); margin-bottom: 18px; }
.section.dark .split-text p { color: rgba(255,255,255,.72); }
.split-text .btn { margin-top: 12px; }

/* Values / feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.feature-card {
  background: #fff;
  padding: 44px 40px;
  border: 1px solid #ececdf;
  transition: transform .3s ease, box-shadow .3s ease;
}
.section.tinted .feature-card { background: #fff; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.08); }
/* On the dark initiatives section: hairline-bordered transparent cards, light text */
.section.dark .feature-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .18);
}
.section.dark .feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 173, 32, .5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}
.section.dark .feature-card h3 { color: #fff; }
.section.dark .feature-card p { color: rgba(255, 255, 255, .72); }
.feature-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.feature-card p { color: var(--muted); font-size: .97rem; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat .num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--gold);
  line-height: 1;
}
.stat .label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.75);
  margin-top: 12px;
}

/* Timeline */
.timeline { max-width: 820px; margin: 0 auto; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 120px; top: 0; bottom: 0;
  width: 1px;
  background: rgba(201,164,92,.4);
}
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding-bottom: 48px;
  position: relative;
}
.timeline-item .year {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  text-align: right;
}
.timeline-item .body h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.timeline-item .body p { color: var(--muted); }
.timeline-item .body::before {
  content: "";
  position: absolute;
  left: 115px; top: 8px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--gold);
}

/* Projects listing grid — image with caption below */
.villa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 40px;
}
.villa-card {
  display: block;
  text-align: center;
}
.villa-card .villa-img {
  height: 300px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .14);
  transition: transform .45s ease, box-shadow .45s ease;
}
.villa-card:hover .villa-img {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px rgba(0, 0, 0, .2);
}
.villa-card .villa-cap { padding: 24px 8px 0; }
.villa-card .villa-cap h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
}
.villa-card .villa-cap span { display: none; }

/* Shine sweep on hover (left -> right) */
.villa-card:not(.soon) .villa-img,
.project-card .project-img,
.vd-gallery .g { position: relative; overflow: hidden; }
.villa-card:not(.soon) .villa-img::before,
.project-card .project-img::before,
.vd-gallery .g::before {
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  width: 60%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, .55) 50%,
    rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
}
.villa-card:not(.soon):hover .villa-img::before,
.project-card:hover .project-img::before,
.vd-gallery .g:hover::before {
  animation: shine .85s ease;
}
@keyframes shine {
  0%   { left: -85%; }
  100% { left: 130%; }
}

/* Coming-soon card: bordered box, no image */
.villa-card.soon { cursor: default; }
.villa-card.soon .villa-img {
  background: transparent;
  border: 1px solid var(--gold);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.villa-card.soon:hover .villa-img { transform: none; box-shadow: none; }
.villa-card.soon .villa-img span {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============== HOME: AWARDS & ACCOLADES =============== */
.awards-block { background: var(--cream); }
.awards-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
}
.awards-intro .eyebrow { text-align: left; margin-bottom: 16px; }
.awards-intro .section-title { text-align: left; margin: 0 0 32px; }
.awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.award-item { margin: 0; }
.award-img {
  position: relative;
  overflow: hidden;
  height: 340px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
}
/* image layer inherits the inline background-image so it can scale independently */
.award-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform .6s ease;
}
.award-item:hover .award-img::before { transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .award-img::before,
  .award-item:hover .award-img::before { transition: none; transform: scale(1); }
}
.award-item figcaption {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--navy);
}
@media (max-width: 900px) {
  .awards-layout { grid-template-columns: 1fr; gap: 40px; }
  .awards-intro { text-align: center; }
  .awards-intro .eyebrow,
  .awards-intro .section-title { text-align: center; }
}
@media (max-width: 600px) {
  .awards-grid { grid-template-columns: 1fr; }
}

/* =============== DESIGN PHILOSOPHY =============== */
.vd-tagline {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: .5px;
  margin-bottom: 22px;
}
/* ===== Design Philosophy page ===== */
.dp-statement-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}
.dp-statement-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--green);
  text-wrap: balance;
  margin: 0;
}
.dp-rule { display: block; width: 62px; height: 2px; background: var(--gold); margin-top: 26px; }
.dp-statement-body { padding-top: 6px; }
.dp-statement-body p {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 48ch;
  margin: 0;
}
.dp-philosophy .split-media { height: 560px; }
.dp-philosophy .split-text h2 { margin-bottom: 20px; }
@media (max-width: 860px) {
  .dp-statement-grid { grid-template-columns: 1fr; gap: 20px; }
  .dp-rule { margin-top: 18px; }
}
@media (max-width: 980px) {
  .dp-philosophy .split-media { height: 380px; }
}

.principles-layout { display: block; }
.principles-intro { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.principles-intro h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.principles-intro p { color: var(--muted); font-size: .98rem; }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  /* the last row's gold faces sit translated ~100px below the grid box at rest;
     reserve that space plus a comfortable gap before the footer */
  margin-bottom: 120px;
}
@media (max-width: 1100px) { .principles-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .principles-grid { grid-template-columns: repeat(2, 1fr); } }
/* Two stacked panels: at rest the gold face sits pushed down over the white
   detail, which is parked behind it. Hover slides both to 0, so the detail
   drops out below — overlapping the row beneath, hence the z-index lift. */
.principle-card {
  position: relative;
  cursor: pointer;
  height: 200px;
}
.principle-card::before {
  content: "";
  position: absolute;
  inset: 8px 0 0;
  width: 100%;
  height: 220px;
  background: rgba(0, 0, 0, .01);
  filter: blur(19px);
  opacity: 0;
  transition: opacity .5s ease, height .5s ease;
}
.principle-card:hover { z-index: 3; }
.principle-card:hover::before { opacity: 1; height: 100%; }
/* Gold face — icon + title */
.pc-face {
  position: relative;
  height: 195px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  text-align: center;
  color: #fff;
  background: var(--gold);
  border-bottom: 3px solid var(--cream);
  z-index: 1;
  transform: translateY(100px);
  transition: transform .5s ease, background .5s ease, border-color .5s ease;
}
.principle-card:hover .pc-face {
  transform: translateY(0);
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.pc-face i { font-size: 2rem; color: #fff; }
.pc-face h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: .5px;
  color: #fff;
}
/* White detail — parked exactly behind the face (same height, offset by the
   face's own translate), so nothing peeks out at rest; slides down on hover */
.pc-detail {
  position: relative;
  height: 195px;
  background: #fff;
  color: var(--muted);
  padding: 20px;
  font-size: .88rem;
  line-height: 1.5;
  overflow: auto;
  transform: translateY(-95px);
  transition: transform .5s ease, box-shadow .5s ease;
}
.principle-card:hover .pc-detail {
  transform: translateY(0);
  box-shadow: 0 5px 28px rgba(0, 0, 0, .12);
}
@media (max-width: 820px) {
  .principles-layout { grid-template-columns: 1fr; gap: 34px; }
  .principles-intro { text-align: center; }
  /* reveal is disabled here, so cards no longer overflow — drop the reserved space */
  .principles-grid { margin-bottom: 0; }
}
@media (max-width: 480px) {
  .principles-grid { grid-template-columns: 1fr; }
}
/* Hover-driven, so below the breakpoint show both panels outright */
@media (max-width: 820px), (hover: none) {
  .principle-card { height: auto; }
  .pc-face,
  .pc-detail,
  .principle-card:hover .pc-face,
  .principle-card:hover .pc-detail { transform: none; }
  .pc-detail { height: auto; box-shadow: 0 5px 28px rgba(0, 0, 0, .12); }
  .principle-card::before { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .pc-face, .pc-detail, .principle-card::before { transition: none; }
}

/* =============== SINGLE PROJECT (villa detail) =============== */
.vd-head { max-width: 820px; margin: 0 auto 10px; text-align: center; }
.vd-head h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--navy);
}
.vd-region {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 400;
  color: var(--gold);
  margin: 10px 0 24px;
}
.vd-intro { color: var(--muted); font-size: 1rem; line-height: 1.8; }
.vd-intro .hl { color: var(--gold); font-weight: 400; }
.vd-intro b { color: var(--navy); }
.vd-award { color: var(--navy); font-weight: 400; margin-top: 16px; font-size: .98rem; }

/* Tabs */
.vd-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0;
  margin: 50px auto 40px;
  max-width: 900px;
}
.vd-tab {
  background: var(--navy);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .5px;
  padding: 13px 26px;
  border-radius: 5px 5px 0 0;
  transition: background .25s ease;
}
.vd-tab:hover { background: var(--navy-2); }
.vd-tab.active { background: var(--gold); }
/* Mobile dropdown alternative to the button tabs — hidden on desktop */
.vd-tab-select {
  display: none;
  width: 100%;
  max-width: 900px;
  margin: 40px auto 40px;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  background: var(--navy);
  border: 1px solid var(--gold);
  border-radius: 8px;
  cursor: pointer;
  /* custom gold chevron */
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23E0AD20' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.vd-tab-select option { color: var(--ink); background: #fff; }
.vd-panel { display: none; }
.vd-panel.active { display: block; }

/* Layout Plan enquiry modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .55);
}
.modal-overlay.open { display: flex; }
.modal-box {
  position: relative;
  width: min(560px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 14px;
  padding: 44px 46px 48px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
}
.modal-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  transition: color .2s ease;
}
.modal-close:hover { color: var(--gold); }
.modal-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 34px;
  padding-right: 30px;
}
.modal-form { display: flex; flex-direction: column; gap: 30px; }
.modal-form input {
  border: 0;
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
  padding: 8px 2px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  outline: none;
  transition: border-color .2s ease;
}
.modal-form input::placeholder { color: #797978; }
.modal-form input:focus { border-bottom-color: var(--gold-dark); }
.modal-submit {
  align-self: center;
  margin-top: 12px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 46px;
  border-radius: 8px;
  letter-spacing: 1px;
}
.modal-submit:hover { background: var(--gold); color: #fff; }
.vd-placeholder {
  text-align: center;
  color: var(--muted);
  padding: 70px 20px;
  border: 1px dashed #d8d8cc;
  border-radius: 12px;
  font-size: 1.05rem;
}

/* Gallery grid */
.vd-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vd-gallery .g {
  height: 300px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
  transition: transform .4s ease;
}
.vd-gallery .g:hover { transform: translateY(-4px); }
.vd-gallery .g.more { cursor: pointer; }
.vd-gallery .g.more::after {
  content: "Click here for more images";
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 20, .55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  letter-spacing: .5px;
  padding: 10px;
}

/* Feature badges */
.vd-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  margin: 90px auto 70px;
  max-width: 900px;
}
.circle-badge {
  width: 94px;
  height: 94px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 5px var(--cream), 0 0 0 6px var(--gold);
}
.vd-feature h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
}

/* Brochure */
.vd-brochure {
  max-width: 440px;
  margin: 0 auto;
  border: 1px dashed var(--gold);
  border-radius: 8px;
  padding: 34px 30px;
  text-align: center;
}
.vd-brochure .pdf { font-size: 1.7rem; color: var(--gold); display: block; margin-bottom: 12px; }
.vd-brochure span {
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--navy);
}

@media (max-width: 820px) {
  .vd-gallery { grid-template-columns: 1fr; }
  .vd-features { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  /* swap the button tabs for a dropdown on mobile */
  .vd-tabs { display: none; }
  .vd-tab-select { display: block; }
}

/* Project detail spec list */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 10px;
}
.spec {
  border: 1px solid #e6e6d8;
  padding: 26px 22px;
  text-align: center;
}
.spec .k { text-transform: uppercase; letter-spacing: 1.5px; font-size: 11px; color: var(--muted); font-weight: 400; }
.spec .v { font-family: var(--serif); font-size: 1.5rem; color: var(--navy); margin-top: 8px; }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery .g-item { height: 260px; background-size: cover; background-position: center; }
.gallery .g-item.wide { grid-column: span 2; }

/* Contact page */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}
.contact-card {
  text-align: center;
  padding: 44px 30px;
  border: 1px solid #ececdf;
  background: #fff;
}
.contact-card .ic { font-size: 2rem; color: var(--gold); margin-bottom: 16px; display: block; }
.contact-card h3 { font-family: var(--serif); color: var(--navy); font-size: 1.3rem; margin-bottom: 10px; }
.contact-card a, .contact-card p { color: var(--muted); font-size: .97rem; display: block; }
.contact-card a:hover { color: var(--gold); }
.map-embed { width: 100%; height: 420px; border: 0; border-radius: 16px; filter: grayscale(.2); }

/* =============== CONTACT PAGE: careers + twin enquiry forms =============== */
.careers-block { text-align: center; max-width: 780px; margin: 0 auto 60px; }
.careers-block .section-title { margin-bottom: 20px; }
.careers-block p { color: var(--muted); line-height: 1.9; }
.careers-block a { color: var(--gold); }
.careers-block a:hover { color: var(--gold-dark); }
.contact-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  justify-content: center;
  gap: 40px;
  text-align: center;
}
.contact-meta-col h3 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 14px;
}
.contact-meta-col p { color: var(--muted); font-size: .97rem; line-height: 1.9; }
.contact-meta-col a { color: var(--muted); }
.contact-meta-col a:hover { color: var(--gold); }
/* Contact rows: gold icon + text, kept centred as a unit */
.contact-lines { display: grid; gap: 10px; justify-items: center; }
.contact-lines a,
.contact-address {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--muted); font-size: .97rem;
}
.contact-address { align-items: flex-start; text-align: left; }
.contact-lines i,
.contact-address i { color: var(--gold); font-size: 15px; width: 18px; flex: 0 0 18px; text-align: center; }
.contact-address i { margin-top: 5px; }
.contact-rule { border: 0; border-top: 1px solid #e6e2d6; margin: 50px 0; }
/* Twin forms, split by a vertical rule on desktop */
.enquiry-forms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
/* Single-form variant: keep it centred rather than stranded in one column */
.enquiry-forms.single { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
.enquiry-col + .enquiry-col {
  border-left: 1px solid #e6e2d6;
  padding-left: 70px;
}
.enquiry-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.25;
  /* reserve two lines so both columns' fields start on the same baseline,
     whichever heading wraps */
  min-height: 2.5em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 34px;
}
/* Underline-style fields */
.underline-form { display: flex; flex-direction: column; gap: 26px; }
.uf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.underline-form input,
.underline-form select,
.underline-form textarea {
  width: 100%;
  padding: 6px 2px;
  border: 0;
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .25s ease;
}
.underline-form textarea { resize: vertical; min-height: 46px; }
.underline-form input::placeholder,
.underline-form textarea::placeholder { color: #797978; }
.underline-form select { color: #797978; }
.underline-form select:valid { color: var(--ink); }
.underline-form input:focus,
.underline-form select:focus,
.underline-form textarea:focus { border-bottom-color: var(--gold-dark); }
.underline-form .btn { align-self: flex-start; margin-top: 12px; border-radius: 8px; }
.underline-form .form-note { margin-bottom: 0; }
@media (max-width: 900px) {
  .enquiry-forms { grid-template-columns: 1fr; gap: 50px; }
  .enquiry-col + .enquiry-col { border-left: 0; padding-left: 0; }
}
@media (max-width: 560px) {
  .contact-meta { grid-template-columns: 1fr; gap: 30px; }
  .uf-row { grid-template-columns: 1fr; }
}

/* Utility */
.prose { max-width: 800px; margin: 0 auto; }
.prose p { color: var(--muted); margin-bottom: 20px; font-size: 1.05rem; }
.prose h2 {
  font-family: var(--serif); color: var(--navy);
  font-size: 2rem; margin: 40px 0 18px;
}
.mt-40 { margin-top: 40px; }
.center-btn { text-align: center; margin-top: 60px; }

@media (max-width: 980px) {
  .feature-grid, .villa-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .feature-grid, .villa-grid, .gallery { grid-template-columns: 1fr; }
  .gallery .g-item.wide { grid-column: span 1; }
  .timeline::before { left: 6px; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; padding-left: 30px; }
  .timeline-item .year { text-align: left; }
  .timeline-item .body::before { left: 0; }
  .section { padding: 70px 0; }
}

/* ---------------------------------------------------------------
   Lighter typography — heavy bold was compressing the luxury look.
   Inline <strong>/<b> keep their colour emphasis but drop the weight.
   --------------------------------------------------------------- */
strong, b { font-weight: 400; }
.prose strong, .split-text strong, .mission-text strong { font-weight: 400; }
/* Headings with no explicit weight were falling back to the browser default
   (bold/700). Low specificity, so existing class-based rules still win. */
h1, h2, h3, h4, h5, h6 { font-weight: 400; }
/* Body copy sits at Light; small uppercase labels keep a touch more weight so
   they stay legible at 10-11px. */
p, li { font-weight: 300; }
.eyebrow, .crumb, .score .sl, .spec .k, .btn { font-weight: 400; }

/* =====================================================
   HOME: SIGNATURE COLLECTION (asymmetric feature grid)
   ===================================================== */
.sig-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 44px;
  text-align: left;
}
.sig-head .eyebrow { text-align: left; }
/* Override the centred default from .projects */
.sig-head .section-title { margin: 0; text-align: left; max-width: 640px; }
/* Signature-collection title on a single line (wraps only on smaller screens) */
.sig-head .sig-title-1line {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.05rem, 2vw, 1.75rem);
}
.sig-link {
  display: inline-flex; align-items: center; gap: 12px;
  white-space: nowrap;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink);
  transition: color .25s ease;
}
.sig-link i { transition: transform .3s ease; }
.sig-link:hover { color: var(--gold); }
.sig-link:hover i { transform: translateX(7px); }

.sig-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-auto-rows: 246px;
  gap: 22px;
}
.sig-lead { grid-row: span 2; }

.sig-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: var(--green);
}
.sig-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .7s ease;
}
.sig-card:hover .sig-img { transform: scale(1.06); }
/* Legibility scrim behind the caption */
.sig-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,.78) 0%, rgba(0,0,0,.35) 42%, rgba(0,0,0,0) 72%);
  z-index: 1;
}
.sig-info { position: absolute; left: 30px; bottom: 28px; z-index: 2; }
.sig-name {
  display: block;
  font-family: var(--serif); font-weight: 400;
  font-size: 1.5rem; color: #fff;
}
.sig-sub {
  display: block; margin-top: 8px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
}
.sig-arrow {
  position: absolute; right: 28px; bottom: 28px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.sig-card:hover .sig-arrow { background: var(--gold); color: #fff; }

/* Placeholder tile for an unannounced project — same treatment as the real
   cards, but not clickable, so no hover zoom and no arrow. */
.sig-soon { cursor: default; }
.sig-soon:hover .sig-img { transform: none; }

@media (max-width: 900px) {
  .sig-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .sig-head .sig-title-1line { white-space: normal; }
  .sig-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .sig-lead { grid-row: auto; }
}
@media (max-width: 560px) {
  .sig-info { left: 20px; bottom: 20px; }
  .sig-arrow { right: 18px; bottom: 18px; width: 38px; height: 38px; }
  .sig-name { font-size: 1.25rem; }
}

/* =====================================================
   HOME: AMENITIES — continuous right-to-left carousel
   ===================================================== */
.amenities { padding: 110px 0; background: var(--cream); overflow: hidden; }
.amenities .eyebrow { text-align: left; }
.amenities .section-title { text-align: left; margin: 0 0 44px; max-width: 640px; }

.marquee { width: 100%; overflow: hidden; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-rtl 55s linear infinite;
}
/* Spacing via margin (not gap) so the -50% translate lands on an exact
   duplicate and the loop has no visible jump. */
.am-card {
  position: relative;
  flex: 0 0 auto;
  /* Two cards per row: each takes half the viewport, less its own margin */
  width: calc(50vw - 33px);
  height: clamp(300px, 30vw, 460px);
  margin: 0 22px 0 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}
.am-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .7s ease;
}
.am-card:hover .am-img { transform: scale(1.05); }
.am-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,.78) 0%, rgba(0,0,0,.2) 48%, rgba(0,0,0,0) 75%);
}
.am-card figcaption {
  position: absolute; left: 24px; bottom: 20px; z-index: 2;
  font-family: var(--serif); font-weight: 400;
  font-size: 1.15rem; color: #fff;
}
@keyframes marquee-rtl {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* Let people stop it to read a label */
.marquee:hover .marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; }
}
/* Two half-width cards are too cramped on phones — show one at a time,
   with a sliver of the next so the scroll is obvious. */
@media (max-width: 700px) {
  .am-card { width: 82vw; height: 260px; margin-right: 16px; }
  .am-card figcaption { left: 18px; bottom: 16px; font-size: 1rem; }
}

/* ===== Amenities fullscreen lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(10, 24, 18, .94);
  opacity: 0;
  transition: opacity .28s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lb-stage {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 90vw;
}
.lb-img {
  max-width: 88vw;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
  object-fit: contain;
}
.lb-caption {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: .3px;
}
/* Close + arrow controls */
.lb-close,
.lb-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: #fff;
  background: var(--gold);
  transition: background .2s ease, transform .2s ease;
}
.lb-close {
  top: 26px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}
.lb-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 22px;
}
.lb-prev { left: 30px; }
.lb-next { right: 30px; }
.lb-close:hover,
.lb-nav:hover { background: var(--green); }
.lb-nav:hover { transform: translateY(-50%) scale(1.08); }

@media (max-width: 640px) {
  .lightbox { padding: 20px; }
  .lb-img { max-width: 94vw; max-height: 74vh; }
  .lb-close { top: 14px; right: 16px; width: 40px; height: 40px; font-size: 22px; }
  .lb-nav { width: 44px; height: 44px; font-size: 18px; }
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
  .lb-caption { font-size: 1.05rem; }
}

/* =====================================================================
   ABOUT / OUR STORY — redesigned page (.abt-*)
   ===================================================================== */
.abt-kicker{font-family:var(--serif);letter-spacing:.28em;text-transform:uppercase;
  font-size:.72rem;color:var(--gold-dark);margin:0 0 16px;font-weight:600}
.abt-kicker-light{color:var(--gold)}
.abt-h2{font-family:var(--serif);font-weight:400;color:var(--green);
  font-size:clamp(1.5rem,3vw,2.3rem);line-height:1.3;letter-spacing:-.01em;
  margin:0;text-wrap:balance}
.abt-h2-light{color:#fff}
.abt-center{text-align:center;max-width:720px;margin:0 auto clamp(40px,6vw,64px)}

/* ---- Hero ---- */
.abt-hero{position:relative;min-height:clamp(440px,66vh,640px);display:flex;align-items:flex-end;
  background-size:cover;background-position:center;color:#fff;margin-top:0}
.abt-hero::after{content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(11,59,47,.55) 0%,rgba(11,59,47,.15) 40%,rgba(11,59,47,.85) 100%)}
.abt-hero-inner{position:relative;z-index:2;padding:0 0 clamp(48px,7vw,80px)}
.abt-crumb{letter-spacing:.22em;font-size:.72rem;text-transform:uppercase;color:rgba(255,255,255,.85);margin:0 0 14px}
.abt-hero-title{font-family:var(--serif);font-weight:400;letter-spacing:.02em;
  font-size:clamp(2rem,4.8vw,3.4rem);line-height:1.05;margin:0 0 18px}
.abt-hero-sub{font-size:clamp(1rem,1.6vw,1.2rem);color:rgba(255,255,255,.9);max-width:34ch;line-height:1.5}

/* ---- Our Story ---- */
.abt-story-grid{display:grid;grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr) auto;
  gap:clamp(28px,4vw,60px);align-items:center}
.abt-story-media{position:relative;min-height:440px}
.abt-frame{position:absolute;border-radius:6px;background-size:cover;background-position:center;
  box-shadow:0 30px 60px rgba(11,59,47,.28)}
.abt-frame-back{inset:0 32px 48px 0;opacity:.5;filter:grayscale(.2)}
.abt-frame-front{inset:40px 0 0 44px;border:6px solid #fff}
.abt-story-text .abt-prose p{color:var(--muted);margin:0 0 16px;line-height:1.7;max-width:62ch;font-size:1.05rem}
.abt-story-text .abt-prose strong{color:var(--green);font-weight:600}
.abt-story-text .abt-h2{margin:0 0 22px}
.abt-story-note{display:flex;flex-direction:column;align-items:center;gap:12px;
  border-left:1px solid var(--gold);padding-left:22px;align-self:stretch;justify-content:center}
.abt-note-num{font-family:var(--serif);font-size:2rem;color:var(--gold-dark)}
.abt-note-label{writing-mode:vertical-rl;text-orientation:mixed;letter-spacing:.24em;
  text-transform:uppercase;font-size:.7rem;color:var(--muted);text-align:center;line-height:1.6;transform:rotate(180deg)}

/* ---- Journey ---- */
.abt-journey{background:var(--cream-2)}
.abt-journey > .container{width:min(1460px,94%);max-width:none}
.abt-journey-grid{display:grid;grid-template-columns:1.7fr 1fr;gap:clamp(30px,4vw,56px);align-items:center}
.abt-timeline{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(4,1fr);gap:20px;position:relative}
.abt-timeline::before{content:"";position:absolute;top:34px;left:6px;right:6px;height:1px;background:var(--gold);opacity:.45}
.abt-tl-item{position:relative;padding-top:0}
.abt-tl-year{font-family:var(--serif);color:var(--gold-dark);font-size:1.05rem;display:block;margin-bottom:14px}
.abt-tl-dot{position:absolute;top:29px;left:0;width:11px;height:11px;border-radius:50%;background:var(--gold);
  box-shadow:0 0 0 4px var(--cream-2);animation:abtDotPulse 1.9s ease-out infinite}
.abt-tl-item:nth-child(2) .abt-tl-dot{animation-delay:.4s}
.abt-tl-item:nth-child(3) .abt-tl-dot{animation-delay:.8s}
.abt-tl-item:nth-child(4) .abt-tl-dot{animation-delay:1.2s}
@keyframes abtDotPulse{
  0%{box-shadow:0 0 0 4px var(--cream-2),0 0 0 4px rgba(224,173,32,.55)}
  70%{box-shadow:0 0 0 4px var(--cream-2),0 0 0 13px rgba(224,173,32,0)}
  100%{box-shadow:0 0 0 4px var(--cream-2),0 0 0 13px rgba(224,173,32,0)}
}
@media(prefers-reduced-motion:reduce){.abt-tl-dot{animation:none}}
.abt-tl-title{font-size:1.5rem;font-weight:600;color:var(--green);margin:22px 0 8px}
.abt-tl-desc{font-size:1.05rem;color:var(--muted);line-height:1.6;margin:0}
.abt-journey-media{min-height:300px;border-radius:10px;background-size:cover;background-position:center;
  box-shadow:0 26px 54px rgba(11,59,47,.22)}

/* ---- Values ---- */
.abt-value-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.abt-value-card{background:#fff;border:1px solid var(--line,#e6ebe6);border-radius:12px;
  padding:30px 28px;box-shadow:0 10px 30px rgba(11,59,47,.06);transition:transform .35s cubic-bezier(.22,1,.36,1),box-shadow .35s}
.abt-value-card:hover{transform:translateY(-6px);box-shadow:0 22px 48px rgba(11,59,47,.12)}
.abt-value-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px}
.abt-value-num{font-family:var(--serif);font-size:1.6rem;color:var(--gold-dark)}
.abt-value-coin{width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:radial-gradient(circle at 35% 30%,#f2d276,#c99a1c);box-shadow:0 6px 16px rgba(191,144,19,.35)}
.abt-value-coin img{width:26px;height:26px;filter:brightness(0) invert(1);opacity:.92}
.abt-value-title{font-family:var(--serif);font-weight:400;font-size:1.5rem;color:var(--green);margin:0 0 10px}
.abt-value-desc{color:var(--muted);font-size:1.05rem;line-height:1.6;margin:0}

/* ---- Stats band ---- */
.abt-stats{background:var(--green);color:#fff;padding:clamp(48px,6vw,72px) 0}
.abt-stats-eyebrow{text-align:center;letter-spacing:.24em;text-transform:uppercase;font-size:.72rem;
  color:var(--gold);margin:0 0 34px}
.abt-stats-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.abt-stat{text-align:center;padding:6px 16px;border-right:1px solid rgba(255,255,255,.16)}
.abt-stat:last-child{border-right:none}
.abt-stat-n{display:block;font-family:var(--serif);font-size:clamp(2rem,4vw,2.8rem);color:#fff;line-height:1}
.abt-stat-l{display:block;margin-top:10px;color:rgba(255,255,255,.72);font-size:1.05rem;letter-spacing:.04em}

/* ---- Elevated living ---- */
.abt-elevated{position:relative;background-size:cover;background-position:center;color:#fff;
  padding:clamp(70px,10vw,120px) 0;text-align:center}
.abt-elevated::after{content:"";position:absolute;inset:0;background:rgba(11,59,47,.72)}
.abt-elevated-inner{position:relative;z-index:2;max-width:760px}
.abt-elevated .abt-h2{margin:0 auto 22px}
.abt-elevated-text{color:rgba(255,255,255,.85);line-height:1.75;font-size:1.05rem;max-width:64ch;margin:0 auto}

/* ---- Design philosophy ---- */
.abt-philo-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(30px,5vw,64px);align-items:center}
.abt-philo-collage{position:relative;min-height:420px}
.abt-philo-collage span{position:absolute;border-radius:10px;background-size:cover;background-position:center;
  box-shadow:0 26px 54px rgba(11,59,47,.24)}
.abt-philo-collage .c1{inset:0 34% 30% 0}
.abt-philo-collage .c2{inset:34% 0 0 32%;border:6px solid #fff}
.abt-philo-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:26px}
.abt-philo-list li{display:flex;gap:18px;align-items:flex-start}
.abt-philo-ic{flex:0 0 46px;width:46px;height:46px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:var(--cream-2);color:var(--gold-dark);font-size:1.05rem;border:1px solid rgba(191,144,19,.3)}
.abt-philo-list h3{font-family:var(--serif);font-weight:400;font-size:1.5rem;color:var(--green);margin:2px 0 6px}
.abt-philo-list p{color:var(--muted);font-size:1.05rem;line-height:1.6;margin:0;max-width:46ch}

/* ---- Destinations ---- */
.abt-dest{background:var(--cream-2)}
.abt-dest-grid{display:grid;grid-template-columns:1fr 1fr;gap:26px}
.abt-dest-card{position:relative;min-height:300px;border-radius:12px;overflow:hidden;display:flex;align-items:flex-end;
  background-size:cover;background-position:center;color:#fff;box-shadow:0 18px 44px rgba(11,59,47,.2)}
.abt-dest-card:hover .abt-dest-overlay{background:linear-gradient(180deg,rgba(11,59,47,.1),rgba(11,59,47,.9))}
.abt-dest-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(11,59,47,.05),rgba(11,59,47,.8));transition:background .4s}
.abt-dest-body{position:relative;z-index:2;padding:30px}
.abt-dest-name{display:block;font-family:var(--serif);font-size:1.7rem;margin-bottom:8px}
.abt-dest-desc{display:block;color:rgba(255,255,255,.85);max-width:34ch;margin-bottom:16px;line-height:1.5;font-size:1.05rem}
.abt-dest-link{display:inline-flex;align-items:center;gap:10px;color:var(--gold);font-weight:500;letter-spacing:.02em}
.abt-dest-link i{transition:transform .3s}
.abt-dest-card:hover .abt-dest-link i{transform:translateX(6px)}

/* ---- Leadership ---- */
.abt-leader-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;align-items:start}
/* All three leader cards render at equal size (no centre highlight) */
.abt-leader.is-featured{box-shadow:0 14px 40px rgba(11,59,47,.16)}
/* Photo-only card. The details panel sits BEHIND the image; on hover the image
   slides away to reveal it (panel appears from behind the image). */
.abt-leader{position:relative;overflow:hidden;border-radius:12px;
  box-shadow:0 14px 40px rgba(11,59,47,.16);cursor:pointer;outline:none}
.abt-leader:focus-visible{box-shadow:0 0 0 3px var(--gold),0 14px 40px rgba(11,59,47,.16)}
.abt-leader-img{display:block;width:100%;height:auto;position:relative;z-index:2;
  transition:transform .6s cubic-bezier(.22,1,.36,1)}
.abt-leader-panel{position:absolute;inset:0;z-index:1;display:flex;flex-direction:column;justify-content:center;
  padding:clamp(26px,3vw,40px);background:var(--green);color:#fff}
.abt-leader:hover .abt-leader-img,
.abt-leader:focus-within .abt-leader-img{transform:translateX(101%)}
.abt-leader-name{font-family:var(--serif);font-weight:400;font-size:1.5rem;color:#fff;margin:0 0 6px}
.abt-leader-role{color:var(--gold);text-transform:uppercase;letter-spacing:.1em;font-size:.72rem;font-weight:600;margin:0 0 16px}
.abt-leader-bio{color:rgba(255,255,255,.85);font-size:1.05rem;line-height:1.7;margin:0;max-width:42ch}
/* Touch devices can't hover — show the details as a bottom gradient over the image */
@media (hover:none){
  .abt-leader-panel{z-index:3;justify-content:flex-end;
    background:linear-gradient(180deg,rgba(11,59,47,0) 30%,rgba(11,59,47,.6) 60%,rgba(11,59,47,.96) 100%)}
}
@media (prefers-reduced-motion:reduce){ .abt-leader-img{transition:none} }

/* ---- Quote ---- */
.abt-quote{position:relative;background-size:cover;background-position:center;color:#fff;
  padding:clamp(64px,9vw,110px) 0;text-align:center}
.abt-quote::after{content:"";position:absolute;inset:0;background:rgba(11,59,47,.8)}
.abt-quote-inner{position:relative;z-index:2;max-width:820px}
.abt-quote-mark{font-family:var(--serif);font-size:4rem;color:var(--gold);line-height:.4;display:block;margin-bottom:10px}
.abt-quote-text{font-family:var(--serif);font-style:italic;font-weight:400;
  font-size:clamp(1.55rem,2.9vw,2.25rem);line-height:1.35;margin:0 0 20px;text-wrap:balance}
.abt-quote-cite{color:var(--gold);font-style:normal;letter-spacing:.06em;font-size:.9rem}

/* ---- CTA ---- */
.abt-cta{position:relative;background-size:cover;background-position:center;color:#fff;
  padding:clamp(64px,9vw,110px) 0;text-align:center}
.abt-cta::after{content:"";position:absolute;inset:0;background:rgba(11,59,47,.82)}
.abt-cta-inner{position:relative;z-index:2;max-width:680px}
.abt-cta .abt-h2{margin:0 auto 16px}
.abt-cta-text{color:rgba(255,255,255,.85);font-size:1.05rem;margin:0 0 30px}
.abt-cta-btns{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}
.abt-cta .btn-outline{border-color:rgba(255,255,255,.75);color:#fff}
.abt-cta .btn-outline:hover{background:#fff;color:var(--green)}

/* ---- Responsive ---- */
@media(max-width:900px){
  .abt-story-grid{grid-template-columns:1fr}
  .abt-story-note{flex-direction:row;border-left:none;border-top:1px solid var(--gold);padding:18px 0 0;justify-content:flex-start;gap:16px}
  .abt-note-label{writing-mode:horizontal-tb;transform:none;text-align:left}
  .abt-journey-grid,.abt-philo-grid{grid-template-columns:1fr}
  .abt-value-grid{grid-template-columns:1fr;max-width:440px;margin:0 auto}
  .abt-dest-grid,.abt-leader-grid{grid-template-columns:1fr}
  .abt-stats-grid{grid-template-columns:1fr 1fr;gap:26px 0}
  .abt-stat:nth-child(2){border-right:none}
}
@media(max-width:560px){
  .abt-timeline{grid-template-columns:1fr;gap:26px}
  .abt-timeline::before{top:0;bottom:0;left:5px;right:auto;width:1px;height:auto}
  .abt-tl-dot{top:6px}
  .abt-tl-item{padding-left:26px}
  .abt-tl-dot{left:0}
  .abt-philo-collage{min-height:340px}
}
@media(prefers-reduced-motion:reduce){
  .abt-value-card,.abt-dest-overlay,.abt-dest-link i{transition:none}
}

/* =====================================================================
   PROJECT / VILLA DETAIL — redesigned page (.vp-*)
   ===================================================================== */
.btn-green{background:var(--green);color:#fff}
.btn-green:hover{background:var(--green-2);color:#fff}

.vp-kicker{font-family:var(--serif);letter-spacing:.26em;text-transform:uppercase;font-size:.72rem;color:var(--gold-dark);margin:0 0 16px;font-weight:600}
.vp-h2{font-family:var(--serif);font-weight:400;color:var(--green);font-size:clamp(1.5rem,3vw,2.3rem);line-height:1.25;margin:0 0 20px;text-wrap:balance}

/* Hero */
.vp-hero{position:relative;min-height:clamp(560px,86vh,760px);display:flex;align-items:center;overflow:hidden;color:#fff}
.vp-hero-slides{position:absolute;inset:0}
.vp-slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:opacity 1.1s ease}
.vp-slide.active{opacity:1}
.vp-hero-shade{position:absolute;inset:0;background:linear-gradient(100deg,rgba(8,40,31,.94) 0%,rgba(8,40,31,.72) 40%,rgba(8,40,31,.2) 72%,rgba(8,40,31,.45) 100%)}
.vp-hero-inner{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:30px;padding-top:96px}
.vp-hero-text{max-width:540px}
.vp-hero-title{font-family:var(--serif);font-weight:400;letter-spacing:.01em;font-size:clamp(2rem,4.8vw,3.4rem);line-height:1.05;text-transform:uppercase;margin:0 0 16px;color:#fff}
.vp-hero-region{color:var(--gold);letter-spacing:.18em;text-transform:uppercase;font-size:.78rem;margin:0 0 18px;display:flex;align-items:center;gap:12px}
.vp-hero-region::after{content:"";width:46px;height:1px;background:var(--gold)}
.vp-hero-tag{font-size:1.05rem;color:rgba(255,255,255,.92);margin:0 0 12px;line-height:1.5}
.vp-hero-intro{color:rgba(255,255,255,.78);line-height:1.7;margin:0 0 28px;max-width:48ch;font-size:.98rem}
.vp-hero-btns{display:flex;gap:14px;flex-wrap:wrap}
.vp-btn-light{border-color:rgba(255,255,255,.7);color:#fff}
.vp-btn-light:hover{background:#fff;color:var(--green)}
.vp-hero-nums{display:flex;flex-direction:column;gap:18px;align-items:flex-end}
.vp-num{background:none;border:none;color:rgba(255,255,255,.45);font-family:var(--serif);font-size:1.05rem;cursor:pointer;letter-spacing:.05em;padding:2px 14px 2px 0;position:relative;transition:color .3s}
.vp-num:hover{color:#fff}
.vp-num.active{color:var(--gold)}
.vp-num.active::after{content:"";position:absolute;right:0;top:50%;width:1px;height:24px;background:var(--gold);transform:translateY(-50%)}

/* Spec bar */
.vp-specbar{display:grid;grid-template-columns:repeat(4,1fr);background:#fff;border-radius:14px;
  box-shadow:0 24px 60px rgba(8,40,31,.16);margin-top:-46px;position:relative;z-index:5;overflow:hidden}
.vp-spec{display:flex;flex-direction:column;align-items:center;gap:10px;padding:26px 16px;border-right:1px solid var(--line,#e6ebe6);text-align:center}
.vp-spec:last-child{border-right:none}
.vp-spec-ic{color:var(--gold-dark);font-size:1.4rem}
.vp-spec-label{font-size:.95rem;color:var(--ink);letter-spacing:.02em}

/* The Residence */
.vp-res-grid{display:grid;grid-template-columns:1fr 1.05fr;gap:clamp(30px,5vw,64px);align-items:center}
.vp-res-text p{color:var(--muted);font-size:1.05rem;line-height:1.75;max-width:52ch;margin:0}
.vp-res-media{position:relative;min-height:440px}
.vp-res-back{position:absolute;inset:0 0 44px 66px;background-size:cover;background-position:center;border-radius:8px;box-shadow:0 30px 60px rgba(8,40,31,.25)}
.vp-res-front{position:absolute;left:0;bottom:0;width:52%;height:56%;background-size:cover;background-position:center;border-radius:8px;border:6px solid #fff;box-shadow:0 20px 44px rgba(8,40,31,.28)}

/* Collection tabs (override the pill vd-tab look) */
.vp-tabs{display:flex;gap:clamp(18px,3vw,40px);border-bottom:1px solid var(--line,#e6ebe6);justify-content:center;flex-wrap:wrap;background:none;padding:0;margin-bottom:36px}
.vp-tabs .vd-tab{background:none;border:none;border-radius:0;color:var(--muted);padding:14px 2px;font-size:.95rem;
  display:flex;align-items:center;gap:9px;border-bottom:2px solid transparent;letter-spacing:.02em;cursor:pointer}
.vp-tabs .vd-tab i{color:var(--gold-dark)}
.vp-tabs .vd-tab:hover{background:none;color:var(--green)}
.vp-tabs .vd-tab.active{background:none;color:var(--green);border-bottom-color:var(--gold);font-weight:500}

/* Gallery — masonry grid; .tall tiles (computed per photo count in PHP) span
   two rows so the grid always fills with no gaps */
.vp-gallery{display:grid;grid-template-columns:repeat(3,1fr);grid-auto-rows:230px;gap:16px;grid-auto-flow:dense}
.vp-tile{position:relative;margin:0;border-radius:10px;overflow:hidden;cursor:pointer;outline:none;grid-row:span 1}
.vp-tile.tall{grid-row:span 2}
.vp-tile.vp-hidden{display:none}
.vp-tile:focus-visible{box-shadow:0 0 0 3px var(--gold)}
.vp-tile-img{position:absolute;inset:0;background-size:cover;background-position:center;transition:transform .6s cubic-bezier(.22,1,.36,1)}
.vp-tile:hover .vp-tile-img{transform:scale(1.06)}
.vp-tile::after{content:"";position:absolute;inset:0;background:rgba(8,40,31,0);transition:background .4s ease}
.vp-tile:hover::after{background:rgba(8,40,31,.14)}
.vp-gallery-cta{text-align:center;margin-top:32px}
.vp-placeholder{padding:60px 20px;text-align:center;color:var(--muted);background:var(--cream-2);border-radius:12px;font-size:1.05rem}

/* Elevated living band */
.vp-elevated{background:var(--green);color:#fff;padding:clamp(56px,7vw,84px) 0;text-align:center}
.vp-elevated-title{font-family:var(--serif);font-weight:400;font-size:clamp(1.5rem,3vw,2.3rem);margin:0 0 42px;color:#fff}
.vp-feat-row{display:grid;grid-template-columns:repeat(4,1fr)}
.vp-feat{display:flex;flex-direction:column;align-items:center;gap:14px;padding:6px 18px;border-right:1px solid rgba(255,255,255,.16)}
.vp-feat:last-child{border-right:none}
.vp-feat-ic{width:58px;height:58px;border-radius:50%;border:1px solid rgba(224,173,32,.5);display:flex;align-items:center;justify-content:center;color:var(--gold);font-size:1.3rem}
.vp-feat-label{text-transform:uppercase;letter-spacing:.08em;font-size:.78rem;color:rgba(255,255,255,.85);line-height:1.5}

/* Experience / brochure */
.vp-experience{background:var(--cream-2)}
.vp-exp-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(30px,5vw,70px);align-items:center;padding:clamp(50px,7vw,90px) 0}
.vp-exp-media{display:flex;justify-content:center}
.vp-brochure{position:relative;width:min(300px,78%);aspect-ratio:3/4;background-size:cover;background-position:center;
  border-radius:6px;box-shadow:0 40px 70px rgba(8,40,31,.3);display:flex;align-items:flex-end;justify-content:center;
  padding:26px;transform:rotate(-3deg);transition:transform .5s cubic-bezier(.22,1,.36,1)}
.vp-brochure:hover{transform:rotate(0)}
.vp-brochure::after{content:"";position:absolute;inset:0;border-radius:6px;background:linear-gradient(180deg,transparent 45%,rgba(8,40,31,.65))}
.vp-brochure-cap{position:relative;z-index:2;color:#fff;font-family:var(--serif);text-align:center;font-size:1.15rem;line-height:1.3}
.vp-exp-text .vp-h2{margin-bottom:16px}
.vp-exp-text p{color:var(--muted);font-size:1.05rem;line-height:1.7;max-width:46ch;margin:0 0 26px}
.vp-exp-actions{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.vp-call-btn{display:inline-flex;align-items:center;gap:9px}
.vp-exp-or{color:var(--muted);text-transform:uppercase;font-size:.78rem;letter-spacing:.1em}
.vp-exp-call{color:var(--ink);font-size:.95rem}
.vp-exp-call a{color:var(--gold-dark);font-weight:600}

@media(max-width:900px){
  .vp-hero-inner{flex-direction:column;align-items:flex-start}
  .vp-hero-nums{flex-direction:row;align-self:flex-start;margin-top:6px}
  .vp-num.active::after{display:none}
  .vp-specbar{grid-template-columns:1fr 1fr}
  .vp-spec:nth-child(2){border-right:none}
  .vp-res-grid,.vp-exp-grid{grid-template-columns:1fr}
  .vp-res-media{min-height:340px}
  .vp-gallery{grid-template-columns:repeat(2,1fr)}
  .vp-feat-row{grid-template-columns:1fr 1fr;gap:30px 0}
  .vp-feat:nth-child(2){border-right:none}
}
@media(max-width:560px){
  .vp-gallery{grid-template-columns:1fr;grid-auto-rows:220px}
  .vp-gallery .vp-tile.tall{grid-row:span 1}
  .vp-specbar{grid-template-columns:1fr;margin-top:-30px}
  .vp-spec{border-right:none;border-bottom:1px solid var(--line,#e6ebe6)}
  .vp-spec:last-child{border-bottom:none}
  .vp-feat-row{grid-template-columns:1fr}
  .vp-feat{border-right:none;border-bottom:1px solid rgba(255,255,255,.16);padding-bottom:24px}
  .vp-feat:last-child{border-bottom:none}
}
@media(prefers-reduced-motion:reduce){.vp-slide{transition:none}.vp-tile-img,.vp-brochure{transition:none}}

/* ===== Home FAQ accordion ===== */
.home-faq{background:var(--cream-2)}
.faq-head{text-align:center;max-width:640px;margin:0 auto clamp(30px,5vw,48px)}
.faq-list{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:14px}
.faq-item{background:#fff;border:1px solid var(--line,#e6ebe6);border-radius:12px;overflow:hidden;transition:box-shadow .3s ease}
.faq-item[open]{box-shadow:0 12px 30px rgba(11,59,47,.08)}
.faq-item summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:18px;
  padding:20px 24px;font-family:var(--serif);font-weight:400;font-size:1.15rem;color:var(--green)}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary:hover{color:var(--gold-dark)}
.faq-ic{position:relative;flex:0 0 22px;width:22px;height:22px}
.faq-ic::before,.faq-ic::after{content:"";position:absolute;background:var(--gold);border-radius:2px;transition:transform .3s ease,opacity .3s ease}
.faq-ic::before{top:10px;left:2px;right:2px;height:2px}
.faq-ic::after{left:10px;top:2px;bottom:2px;width:2px}
.faq-item[open] .faq-ic::after{transform:scaleY(0);opacity:0}
.faq-a{padding:0 24px 22px;color:var(--muted);font-size:1.05rem;line-height:1.75;max-width:66ch}
.faq-item[open] .faq-a{animation:faqFade .32s ease}
@keyframes faqFade{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:none}}
@media(prefers-reduced-motion:reduce){.faq-item[open] .faq-a{animation:none}.faq-ic::before,.faq-ic::after{transition:none}}

/* ===== Contact — connect section (.ct-*) ===== */
.ct-features{display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin:clamp(30px,5vw,48px) 0;
  border-top:1px solid var(--line,#e6ebe6);border-bottom:1px solid var(--line,#e6ebe6)}
.ct-feat{display:flex;align-items:center;gap:14px;padding:24px 22px;border-right:1px solid var(--line,#e6ebe6)}
.ct-feat:last-child{border-right:none}
.ct-feat-ic{flex:0 0 auto;color:var(--gold-dark);font-size:1.5rem}
.ct-feat-txt{color:var(--ink);font-size:.98rem;line-height:1.35;letter-spacing:.01em}

.ct-connect-head{text-align:center;margin:clamp(20px,4vw,36px) 0 clamp(28px,4vw,44px)}
.ct-connect-head .section-title{margin:0}
.ct-underline{display:block;width:64px;height:2px;background:var(--gold);margin:16px auto 0}

.ct-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.ct-card{position:relative;min-height:320px;border-radius:6px;overflow:hidden;display:flex;align-items:flex-end;
  background-size:cover;background-position:center;box-shadow:0 16px 40px rgba(11,59,47,.16);isolation:isolate}
.ct-card::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(11,59,47,.08) 40%,rgba(11,59,47,.45) 100%);
  transition:background .4s ease;z-index:1}
.ct-card:hover::before{background:linear-gradient(180deg,rgba(11,59,47,.12) 30%,rgba(11,59,47,.6) 100%)}
.ct-card-panel{position:relative;z-index:2;width:100%;display:flex;align-items:center;gap:16px;
  padding:22px 26px;background:linear-gradient(180deg,rgba(11,59,47,.55),var(--green))}
.ct-card-ic{flex:0 0 auto;color:var(--gold);font-size:1.4rem}
.ct-card-text{display:flex;flex-direction:column;gap:4px;min-width:0}
.ct-card-label{color:#fff;text-transform:uppercase;letter-spacing:.08em;font-size:.82rem;font-weight:600}
.ct-card-detail{color:rgba(255,255,255,.9);font-size:1rem;word-break:break-word}
.ct-card:hover{transform:translateY(-4px)}
.ct-card{transition:transform .4s cubic-bezier(.22,1,.36,1),box-shadow .4s}

@media(max-width:820px){
  .ct-features{grid-template-columns:1fr 1fr}
  .ct-feat:nth-child(2){border-right:none}
  .ct-feat:nth-child(1),.ct-feat:nth-child(2){border-bottom:1px solid var(--line,#e6ebe6)}
  .ct-cards{grid-template-columns:1fr;max-width:460px;margin:0 auto}
}
@media(max-width:520px){
  .ct-features{grid-template-columns:1fr}
  .ct-feat{border-right:none;border-bottom:1px solid var(--line,#e6ebe6);justify-content:flex-start}
  .ct-feat:last-child{border-bottom:none}
}
@media(prefers-reduced-motion:reduce){.ct-card,.ct-card::before{transition:none}}

/* =====================================================================
   PROJECTS / OUR PROJECTS — redesigned page (.pj-*)
   ===================================================================== */
.pj-kicker{font-family:var(--serif);letter-spacing:.26em;text-transform:uppercase;font-size:.72rem;color:var(--gold-dark);margin:0 0 14px;font-weight:600}
.pj-kicker-light{color:var(--gold)}
.pj-h2{font-family:var(--serif);font-weight:400;color:var(--green);font-size:clamp(1.5rem,3vw,2.3rem);line-height:1.25;margin:0;text-wrap:balance}
.pj-h2-light{color:#fff}
.pj-center{text-align:center;margin:0 auto clamp(36px,5vw,54px);max-width:760px}

/* Hero */
.pj-hero{position:relative;min-height:clamp(460px,72vh,660px);display:flex;align-items:center;background-size:cover;background-position:center;color:#fff;overflow:hidden}
.pj-hero::after{content:"";position:absolute;inset:0;background:linear-gradient(100deg,rgba(8,40,31,.9) 0%,rgba(8,40,31,.55) 45%,rgba(8,40,31,.1) 78%)}
.pj-hero-inner{position:relative;z-index:2;padding-top:96px;max-width:600px}
.pj-crumb{letter-spacing:.22em;text-transform:uppercase;font-size:.72rem;color:rgba(255,255,255,.85);margin:0 0 16px}
.pj-hero-title{font-family:var(--serif);font-weight:400;text-transform:uppercase;letter-spacing:.01em;font-size:clamp(2rem,4.8vw,3.4rem);line-height:1.08;margin:0 0 18px}
.pj-hero-sub{color:rgba(255,255,255,.85);line-height:1.6;margin:0 0 26px;max-width:46ch;font-size:1rem}
.pj-hero-btns{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:26px}
.pj-hero-loc{display:flex;align-items:center;gap:10px;color:var(--gold);text-transform:uppercase;letter-spacing:.1em;font-size:.8rem;margin:0}

/* Portfolio intro + tabs */
.pj-portfolio{background:var(--cream-2)}
.pj-intro{text-align:center;max-width:720px;margin:0 auto 34px}
.pj-intro .pj-h2{margin:0 0 16px}
.pj-intro-sub{color:var(--muted);font-size:1.05rem;line-height:1.7;margin:0}
.pj-tabs{display:flex;justify-content:center;gap:clamp(16px,3vw,40px);flex-wrap:wrap;border-bottom:1px solid var(--line,#e6ebe6);margin-bottom:clamp(34px,5vw,56px)}
.pj-tab{background:none;border:none;cursor:pointer;padding:14px 4px;font-size:.95rem;color:var(--muted);text-transform:uppercase;letter-spacing:.06em;border-bottom:2px solid transparent;transition:color .25s ease}
.pj-tab:hover{color:var(--green)}
.pj-tab.active{color:var(--green);border-bottom-color:var(--gold);font-weight:500}

/* Project rows */
.pj-rows{display:flex;flex-direction:column;gap:clamp(28px,4vw,48px)}
.pj-row{display:grid;grid-template-columns:1.05fr 1fr;align-items:stretch;background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 14px 40px rgba(8,40,31,.07)}
.pj-row:nth-child(even) .pj-row-media{order:2}
.pj-row-media{position:relative;min-height:clamp(320px,40vw,460px)}
.pj-row-img{position:absolute;inset:0;background-size:cover;background-position:center}
.pj-num{position:absolute;top:18px;left:24px;z-index:2;font-family:var(--serif);font-size:2.6rem;color:rgba(255,255,255,.92);text-shadow:0 2px 12px rgba(0,0,0,.35)}
.pj-row:nth-child(even) .pj-num{left:auto;right:24px}
.pj-row-text{padding:clamp(28px,3.5vw,48px);display:flex;flex-direction:column;justify-content:center}
.pj-row-tag{color:var(--gold-dark);text-transform:uppercase;letter-spacing:.1em;font-size:.72rem;font-weight:600;margin:0 0 12px}
.pj-row-title{font-family:var(--serif);font-weight:400;text-transform:uppercase;font-size:clamp(1.4rem,2.4vw,1.9rem);color:var(--green);margin:0 0 14px;letter-spacing:.01em}
.pj-row-desc{color:var(--muted);font-size:1rem;line-height:1.7;margin:0 0 22px;max-width:48ch}
.pj-specs{display:flex;border-top:1px solid var(--line,#e6ebe6);border-bottom:1px solid var(--line,#e6ebe6);margin-bottom:24px}
.pj-spec{flex:1;display:flex;flex-direction:column;align-items:center;gap:8px;padding:16px 8px;border-right:1px solid var(--line,#e6ebe6);text-align:center}
.pj-spec:last-child{border-right:none}
.pj-spec-ic{color:var(--gold-dark);font-size:1.2rem}
.pj-spec span:last-child{font-size:.82rem;color:var(--ink);letter-spacing:.02em}
.pj-row-btns{display:flex;gap:12px;flex-wrap:wrap}
.pj-empty{text-align:center;color:var(--muted);padding:30px 0;font-size:1.05rem}

/* Coming soon */
.pj-soon{background:var(--green);color:#fff;overflow:hidden}
.pj-soon-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:clamp(30px,5vw,60px);align-items:center;padding:clamp(56px,8vw,96px) 0}
.pj-soon-text .pj-h2{margin:0 0 18px}
.pj-soon-text p{color:rgba(255,255,255,.82);line-height:1.7;margin:0 0 26px;max-width:42ch}
.pj-soon-stack{position:relative;height:clamp(280px,32vw,380px)}
.pj-soon-card{position:absolute;top:50%;width:44%;aspect-ratio:3/4;background-size:cover;background-position:center;border-radius:8px;box-shadow:0 24px 50px rgba(0,0,0,.35);display:flex;align-items:flex-end;padding:16px}
.pj-soon-card::after{content:"";position:absolute;inset:0;border-radius:8px;background:linear-gradient(180deg,transparent 45%,rgba(8,40,31,.85))}
.pj-soon-1{left:2%;transform:translateY(-50%) rotate(-6deg);z-index:1}
.pj-soon-2{left:28%;transform:translateY(-54%) rotate(0deg);z-index:3}
.pj-soon-3{left:54%;transform:translateY(-48%) rotate(6deg);z-index:2}
.pj-soon-label{position:relative;z-index:2;color:#fff;font-size:.78rem;text-transform:uppercase;letter-spacing:.06em;display:flex;align-items:center;gap:8px}
.pj-soon-label i{color:var(--gold)}

/* What defines */
.pj-define-row{display:grid;grid-template-columns:repeat(4,1fr)}
.pj-define{text-align:center;padding:10px 24px;border-right:1px solid var(--line,#e6ebe6)}
.pj-define:last-child{border-right:none}
.pj-define-ic{color:var(--gold-dark);font-size:1.8rem;display:block;margin-bottom:18px}
.pj-define h3{font-family:var(--serif);font-weight:400;text-transform:uppercase;font-size:1rem;letter-spacing:.03em;color:var(--green);margin:0 0 10px}
.pj-define p{color:var(--muted);font-size:.9rem;line-height:1.6;margin:0}

/* Explore by location */
.pj-loc-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.pj-loc-card{position:relative;min-height:220px;border-radius:10px;overflow:hidden;display:flex;align-items:center;background-size:cover;background-position:center;color:#fff;box-shadow:0 16px 40px rgba(8,40,31,.16)}
.pj-loc-card::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(8,40,31,.85) 0%,rgba(8,40,31,.25) 72%)}
.pj-loc-body{position:relative;z-index:2;padding:34px}
.pj-loc-label{display:block;font-size:.85rem;color:rgba(255,255,255,.85);letter-spacing:.04em}
.pj-loc-name{display:block;font-family:var(--serif);font-size:1.8rem;margin:2px 0 16px}
.pj-loc-arrow{display:inline-flex;width:44px;height:44px;border:1px solid rgba(255,255,255,.6);border-radius:50%;align-items:center;justify-content:center;color:#fff;transition:background .3s,border-color .3s,color .3s}
.pj-loc-card:hover .pj-loc-arrow{background:var(--gold);border-color:var(--gold);color:var(--green)}

/* CTA */
.pj-cta{position:relative;background-size:cover;background-position:center;color:#fff}
.pj-cta::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(8,40,31,.92) 0%,rgba(8,40,31,.6) 60%,rgba(8,40,31,.3) 100%)}
.pj-cta-inner{position:relative;z-index:2;padding:clamp(56px,8vw,96px) 0}
.pj-cta-text{max-width:480px}
.pj-cta-text .pj-h2{margin:0 0 16px}
.pj-cta-text > p{color:rgba(255,255,255,.85);line-height:1.7;margin:0 0 24px}
.pj-cta-btns{display:flex;gap:14px;flex-wrap:wrap;align-items:center}
.pj-cta-call{margin:20px 0 0;color:var(--gold);display:flex;align-items:center;gap:10px}
.pj-cta-call a{color:#fff;font-size:1.05rem}

@media(max-width:900px){
  .pj-row,.pj-soon-grid,.pj-loc-grid{grid-template-columns:1fr}
  .pj-row:nth-child(even) .pj-row-media{order:0}
  .pj-row:nth-child(even) .pj-num{left:24px;right:auto}
  .pj-define-row{grid-template-columns:1fr 1fr;gap:34px 0}
  .pj-define:nth-child(2){border-right:none}
  .pj-soon-stack{height:340px;margin-top:6px}
}
@media(max-width:560px){
  .pj-define-row{grid-template-columns:1fr}
  .pj-define{border-right:none;border-bottom:1px solid var(--line,#e6ebe6);padding-bottom:26px}
  .pj-define:last-child{border-bottom:none}
  .pj-soon-card{width:60%}
  .pj-soon-1{left:0}.pj-soon-2{left:20%}.pj-soon-3{left:40%}
}
@media(prefers-reduced-motion:reduce){.pj-loc-arrow{transition:none}}

/* Villa page — video / 3D tour embed + layout plan */
.vp-embed{position:relative;width:100%;aspect-ratio:16/9;border-radius:12px;overflow:hidden;background:#000;box-shadow:0 14px 40px rgba(8,40,31,.16)}
.vp-embed iframe,.vp-embed video{position:absolute;inset:0;width:100%;height:100%;border:0;object-fit:cover;background:#000}
.vp-layout{display:block;text-align:center}
.vp-layout img{max-width:100%;border-radius:12px;box-shadow:0 14px 40px rgba(8,40,31,.14)}

/* =====================================================================
   PROJECTS GRID PAGE (.pg-*) — card grid of villas
   ===================================================================== */
.pg-hero{position:relative;min-height:clamp(300px,42vh,440px);display:flex;align-items:center;
  background-size:cover;background-position:center;color:#fff;overflow:hidden}
.pg-hero::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(8,40,31,.96) 0%,rgba(8,40,31,.82) 34%,rgba(8,40,31,.18) 70%)}
.pg-hero-inner{position:relative;z-index:2;padding-top:90px;max-width:560px}
.pg-hero-title{font-family:var(--serif);font-weight:400;text-transform:uppercase;letter-spacing:.02em;
  font-size:clamp(2rem,4.8vw,3.4rem);line-height:1.05;margin:0 0 14px}
.pg-hero-sub{color:rgba(255,255,255,.85);line-height:1.6;max-width:40ch;margin:0;font-size:1rem}

.pg-section{background:var(--cream-2)}
.pg-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.pg-card{display:flex;flex-direction:column;border-radius:8px;overflow:hidden;background:#fff;
  box-shadow:0 12px 30px rgba(8,40,31,.1);transition:transform .35s cubic-bezier(.22,1,.36,1),box-shadow .35s ease}
.pg-card:hover{transform:translateY(-5px);box-shadow:0 22px 46px rgba(8,40,31,.16)}
.pg-card-img{aspect-ratio:16/11;background-size:cover;background-position:center;position:relative}
.pg-soon-badge{position:absolute;top:12px;left:12px;z-index:2;background:var(--gold);color:var(--green);
  font-family:var(--serif);font-size:.74rem;letter-spacing:.12em;text-transform:uppercase;font-weight:600;
  padding:6px 13px;border-radius:5px;box-shadow:0 6px 16px rgba(8,40,31,.28)}
.pg-cap{background:var(--green);color:#fff;text-align:center;padding:16px 12px;font-family:var(--serif);
  font-size:1.05rem;font-weight:400;letter-spacing:.1em;text-transform:uppercase}
/* Coming soon card */
.pg-soon .pg-soon-visual{aspect-ratio:16/11;background:var(--green);display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:12px;position:relative;
  box-shadow:inset 0 0 0 1px rgba(224,173,32,.14)}
.pg-soon-visual i{font-size:1.7rem;color:rgba(255,255,255,.85)}
.pg-soon-txt{font-family:var(--serif);letter-spacing:.16em;text-transform:uppercase;font-size:1.05rem;color:#fff}
.pg-soon-line{width:38px;height:1px;background:var(--gold)}
.pg-soon .pg-cap{background:var(--green-2)}

@media(max-width:900px){ .pg-grid{grid-template-columns:repeat(2,1fr)} }
@media(max-width:560px){ .pg-grid{grid-template-columns:1fr;max-width:420px;margin:0 auto} }
@media(prefers-reduced-motion:reduce){ .pg-card{transition:none} }

/* current-location highlight on the explore-by-location cards */
.pj-loc-card.is-current{outline:2px solid var(--gold);outline-offset:2px}
