:root {
  --ink: #171819;
  --muted: #676866;
  --paper: #fbfaf6;
  --cream: #f4eddf;
  --line: rgba(23, 24, 25, 0.12);
  --yellow: #ffea2f;
  --yellow-hover: #f3dc16;
  --surface: #ffffff;
  --card-bg: #fffefa;
  --dark-surface: #181919;
  --dark-line: #2e3030;
  --max: 1360px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-shell {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* -----------------------------------------
   NAVIGATION BAR
----------------------------------------- */
.nav-wrap,
.navbar {
  position: fixed;
  z-index: 1000;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 40px), var(--max));
  transition: all 0.3s ease;
}

.nav {
  height: 64px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 18px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.04);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 4px 12px rgba(255, 234, 47, 0.3);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #151617;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0 auto;
  font-size: 14.5px;
  font-weight: 400;
}

.nav-links a {
  position: relative;
  color: #555755;
  padding: 18px 0;
  font-weight: 400;
  transition: color 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--ink);
  font-weight: 500;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 2px;
  border-radius: 10px;
  background: var(--ink);
}

.mobile-nav-cta {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* WhatsApp icon button in navbar */
.nav-wa-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #25d366 !important;
  color: #ffffff !important;
  border: none;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  flex-shrink: 0;
  text-decoration: none;
  padding: 0;
}
.nav-wa-icon:hover {
  transform: scale(1.08) translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}
.nav-wa-icon svg {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px;
  min-height: 22px;
  fill: #ffffff !important;
  stroke: none !important;
  display: block;
}

/* Legacy nav-phone / nav-wa (non-icon variant) */
.nav-phone,
.nav-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.04);
  transition: background 0.2s ease;
}
.nav-phone:hover,
.nav-wa:hover {
  background: rgba(0, 0, 0, 0.08);
}
.nav-phone svg,
.nav-wa svg {
  width: 16px;
  height: 16px;
  fill: #25d366;
  flex-shrink: 0;
}

/* Hero Contact Button (Clean Dark Pill with Yellow Arrow) */
.hero-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink, #171819) !important;
  color: #ffffff !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  margin-top: 4px;
  border: none;
}

.hero-contact-btn:hover {
  background: #2b2c2d !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.hero-contact-btn span {
  font-size: 15px;
  color: var(--yellow, #ffea2f) !important;
  transition: transform 0.2s ease;
}

.hero-contact-btn:hover span {
  transform: translate(2px, -2px);
}

.nav-cta,
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  padding: 11px 22px;
  border-radius: 28px;
  font-weight: 500;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover,
.nav-cta-btn:hover {
  transform: translateY(-1px);
  background: #2b2c2d;
}

.menu-toggle,
.menu-btn {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span,
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* -----------------------------------------
   PAGE HEADER (For Sub-pages)
----------------------------------------- */
.page-head {
  padding-top: 150px;
  padding-bottom: 70px;
  background: radial-gradient(circle at 50% 30%, #fffdf8 0%, #fbfaf6 60%, #f4eddf 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  text-align: center;
}

.page-head .container {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
}

.page-head .kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #7b7c79;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.page-head h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  margin: 0 0 16px;
  color: var(--ink);
}

.page-head p {
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.page-head-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.breadcrumb {
  font-size: 13px;
  font-weight: 600;
  color: #999;
  margin-top: 20px;
  letter-spacing: 0.04em;
}

.breadcrumb a {
  color: var(--ink);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* -----------------------------------------
   GLOBAL SECTION FRAMEWORK
----------------------------------------- */
.section {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
  padding-top: 120px;
}

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

.section-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #7b7c79;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 4.8vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 0;
  color: var(--ink);
}

h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

p.lead {
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.42;
  color: var(--ink);
  margin-top: 0;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.yellow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  padding: 14px 26px;
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.yellow-btn:hover {
  transform: translateY(-2px);
  background: var(--yellow-hover);
  box-shadow: 0 10px 24px rgba(255, 234, 47, 0.35);
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 13px 22px;
  font-weight: 600;
  font-size: 14.5px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.outline-btn:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid #25d366;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.08);
  color: #0e8c3a;
  padding: 13px 20px;
  font-weight: 600;
  font-size: 14.5px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.wa-btn:hover {
  background: #25d366;
  color: #fff;
  transform: translateY(-2px);
}

/* -----------------------------------------
   HERO SECTION (Optimized for Screen Fit)
----------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: radial-gradient(circle at 52% 60%, #fffefa 0%, #fbfaf6 52%, #f5ecdb 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 1200px;
  height: 430px;
  right: -300px;
  top: 250px;
  border: 1px solid rgba(210, 193, 161, 0.28);
  border-radius: 50%;
  transform: rotate(-28deg);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 1100px;
  height: 420px;
  left: -650px;
  bottom: 40px;
  border: 1px solid rgba(210, 193, 161, 0.25);
  border-radius: 50%;
  transform: rotate(-18deg);
  pointer-events: none;
}

/* Hero title — small-title centered between navbar and huge-title, building overlaps */
.hero-title-area {
  position: relative;
  width: 100%;
  padding-top: clamp(112px, 12.5vh, 148px);
  text-align: center;
  z-index: 2;
}
.small-title {
  position: relative;
  z-index: 5;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: clamp(34px, 5vh, 60px);
  color: #444;
}
.huge-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(85px, 13.5vw, 210px);
  line-height: 0.8;
  font-weight: 700;
  letter-spacing: -0.07em;
  white-space: nowrap;
  color: #18191a;
  user-select: none;
}

/* Building — Positioned so roof peak overlaps ~halfway of title */
.hero-building {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  width: min(948px, 68.35vw);
  max-height: 75vh;
  pointer-events: none;
  animation: heroBuildingSlideUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
@keyframes heroBuildingSlideUp {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(55px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.hero-building img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.12));
}

/* Hero left */
.hero-left {
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: 75px;
  padding-left: clamp(24px, 5vw, 75px);
  width: 30%;
  max-width: 340px;
}
.hero-left p {
  font-size: 17px;
  line-height: 1.45;
  margin-bottom: 20px;
  color: #2e2f2e;
}
.yellow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.yellow-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 235, 47, 0.3);
}

/* Hero right */
.hero-right {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 75px;
  padding-right: clamp(24px, 4.5vw, 75px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.tags-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.tag-row-top {
  display: flex;
}
.tag-row-bottom {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid #2e2f2e;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  font-size: 13.5px;
  font-weight: 500;
  color: #171819;
  white-space: nowrap;
}
.tag-icon {
  display: flex;
  align-items: center;
}
.tag-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #171819;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.explore-link span {
  margin-left: 6px;
}

/* -----------------------------------------
   HOMEPAGE CTA
----------------------------------------- */
.cta {
  width: min(calc(100% - 48px), var(--max));
  margin: 80px auto;
  padding: clamp(52px, 6vw, 78px) clamp(24px, 5vw, 64px);
  background: var(--cream);
  border: 1px solid rgba(23, 24, 25, 0.08);
  border-radius: var(--radius-lg);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.cta h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 4.6vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.cta p {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 26px;
  border: 1px solid #171819;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-button span {
  font-size: 20px;
  line-height: 1;
}

.cta-button:hover {
  background: var(--yellow-hover);
  box-shadow: 0 10px 24px rgba(255, 234, 47, 0.34);
  transform: translateY(-2px);
}

/* -----------------------------------------
   STATS STRIP
----------------------------------------- */
.stats-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  padding: 28px 0;
}

.stats-container {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-box {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 42px;
  background: var(--line);
}

/* -----------------------------------------
   01 / ABOUT US SECTION & CARDS
----------------------------------------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: start;
}

.experience-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  margin-top: 32px;
  font-size: 14.5px;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.badge-icon {
  font-size: 24px;
}

.about-points {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

.check-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.value-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 30px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.07);
}

.card-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #8c8d8a;
  margin-bottom: 18px;
}

.value-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--ink);
}

.value-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #5a5b58;
  margin: 0;
}

/* -----------------------------------------
   02 / WHAT WE OFFER (Offerings) & COLLECTIONS
----------------------------------------- */
.collections-section {
  width: 100%;
  padding: 95px clamp(24px, 6vw, 100px) 100px;
  background: #ffffff;
}

.collections-wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.sec-kicker {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #7b7c79;
  margin-bottom: 12px;
}

.sec-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
}

.sec-headline {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #171819;
  margin: 0;
}

.sec-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 8px 22px;
  border-radius: 999px;
  background: #171819;
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.sec-header-btn:hover {
  background: #2c2d2e;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.btn-arrow-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.sec-header-btn:hover .btn-arrow-circle {
  background: #ffffff;
  color: #171819;
  transform: rotate(45deg);
}

.btn-arrow-circle svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.top-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tour-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 3 / 4.2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  background: #222;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.tour-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card:hover .tour-card-img {
  transform: scale(1.08);
}

.tour-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 15, 16, 0.92) 0%, rgba(14, 15, 16, 0.45) 45%, rgba(14, 15, 16, 0.05) 75%, transparent 100%);
  pointer-events: none;
  z-index: 2;
  transition: background 0.35s ease;
}

.tour-card:hover .tour-card-overlay {
  background: linear-gradient(to top, rgba(14, 15, 16, 0.96) 0%, rgba(14, 15, 16, 0.6) 55%, rgba(14, 15, 16, 0.1) 80%, transparent 100%);
}

.tour-arrow-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: #171819;
  display: grid;
  place-items: center;
  z-index: 4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, color 0.2s ease;
}

.tour-card:hover .tour-arrow-btn {
  transform: scale(1.1) rotate(45deg);
  background: var(--yellow);
  color: #171819;
}

.tour-arrow-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.tour-card-body {
  position: relative;
  z-index: 3;
  padding: 24px 20px;
}

.tour-card-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

.tour-card-meta {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.tour-card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, margin-top 0.35s ease;
}

.tour-card:hover .tour-card-desc,
.tour-card:focus .tour-card-desc {
  max-height: 95px;
  opacity: 1;
  margin-top: 10px;
}

/* Experience / 6 Cards */
.experience-section {
  width: 100%;
  padding: 85px clamp(20px, 5vw, 80px) 95px;
  background: #fbf9f5;
}

.experience-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(23, 24, 25, 0.1);
  padding-bottom: 22px;
}

.experience-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  flex-shrink: 0;
}

.experience-header-left .sec-kicker {
  margin-bottom: 0;
}

.experience-headline {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #171819;
  margin: 0;
}

.experience-header-divider {
  display: none;
}

.experience-sub-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: #636461;
  max-width: 440px;
  text-align: right;
  margin: 0;
  padding-bottom: 2px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.exp-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 10.5;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  background: #222;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.exp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.exp-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-card:hover .exp-card-img {
  transform: scale(1.07);
}

.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 15, 16, 0.94) 0%, rgba(14, 15, 16, 0.48) 50%, rgba(14, 15, 16, 0.08) 80%, transparent 100%);
  pointer-events: none;
  z-index: 2;
  transition: background 0.35s ease;
}

.exp-card:hover .exp-card-overlay {
  background: linear-gradient(to top, rgba(14, 15, 16, 0.97) 0%, rgba(14, 15, 16, 0.65) 55%, rgba(14, 15, 16, 0.15) 85%, transparent 100%);
}

.exp-arrow-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  color: #171819;
  display: grid;
  place-items: center;
  z-index: 4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, color 0.2s ease;
}

.exp-card:hover .exp-arrow-btn {
  transform: scale(1.1) rotate(45deg);
  background: var(--yellow);
  color: #171819;
}

.exp-arrow-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.exp-card-body {
  position: relative;
  z-index: 3;
  padding: 20px 18px;
}

.exp-card-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 3px;
}

.exp-card-meta {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.exp-card-desc {
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, margin-top 0.35s ease;
}

.exp-card:hover .exp-card-desc,
.exp-card:focus .exp-card-desc {
  max-height: 80px;
  opacity: 1;
  margin-top: 8px;
}

.exp-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 10px;
}

.exp-footer-text {
  font-size: 15px;
  line-height: 1.5;
  color: #333435;
  margin: 0;
  max-width: 480px;
  font-weight: 400;
}

/* -----------------------------------------
   03 / SIGNATURE PROJECTS SECTION
----------------------------------------- */
/* -----------------------------------------
   03 / SIGNATURE PROJECTS SECTION (2 In-Frame Side-by-Side Grid)
----------------------------------------- */
.projects-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  align-items: stretch;
}

.project-showcase,
.project-showcase.reversed {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  height: 100%;
}

.project-showcase:hover,
.project-showcase.reversed:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
}

.project-showcase.reversed .project-visual,
.project-showcase.reversed .project-details {
  order: unset;
}

.project-visual {
  background: #ede8df;
  position: relative;
  height: 240px;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.project-image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proj-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-showcase:hover .proj-img {
  transform: scale(1.06);
}

.project-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.project-badge.dark {
  background: var(--ink);
  color: #fff;
}

.zoom-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  z-index: 2;
}

.zoom-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.project-details {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  gap: 16px;
  background: #ffffff;
}

.proj-num {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #7b7c79;
  display: block;
  margin-bottom: 6px;
}

.project-details h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  color: var(--ink);
}

.project-loc {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  margin: 0 0 10px;
}

.project-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: #4a4b49;
  margin: 0;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: #faf8f4;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px 14px;
  border-radius: 14px;
}

.spec-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.spec-card span {
  font-size: 11px;
  color: #777;
  font-weight: 500;
}

.amenities-wrap h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #7b7c79;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}

.amenities-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.amenity-pill {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.035);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 4px 10px;
  border-radius: 999px;
}

.project-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.project-ctas .yellow-btn,
.project-ctas .outline-btn,
.project-ctas .wa-btn {
  padding: 10px 16px;
  font-size: 13px;
}

/* =========================================
   ANIMATION SYSTEM (Triggered on Scroll Viewport)
========================================= */

/* Top Loading Progress Bar */
.page-loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffeb2f, #ffd700, #ffeb2f);
  z-index: 99999;
  width: 0%;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
}
.page-loading-bar.done {
  width: 100%;
  opacity: 0;
}

/* =============================================
   CARD POP SCROLL REVEAL KEYFRAMES (Smooth & Gentle)
   ============================================= */
@keyframes cardPopUp {
  0% {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeZoomIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

/* Card Initial Pop-up Viewport States — Smooth & Gentle */
.tour-card,
.exp-card {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  will-change: opacity, transform;
}

.tour-card.is-revealed,
.exp-card.is-revealed {
  animation: cardPopUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Base hidden state — set by JS before observing */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-on-scroll.is-revealed {
  animation: cardPopUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Variant: Slide in from left */
.reveal-from-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-from-left.is-revealed {
  animation: fadeSlideLeft 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Variant: Slide in from right */
.reveal-from-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-from-right.is-revealed {
  animation: fadeSlideRight 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Variant: Fade + subtle zoom in */
.reveal-zoom-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-zoom-in.is-revealed {
  animation: fadeZoomIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Staggered Card & Grid Child Animation Delays */
.top-cards-grid > *:nth-child(1),
.experience-grid > *:nth-child(1),
.values-grid > *:nth-child(1),
.team-grid > *:nth-child(1),
.why-grid > *:nth-child(1),
.projects-container > *:nth-child(1),
.stats-strip > *:nth-child(1),
.career-pillars > *:nth-child(1),
.benefits-grid > *:nth-child(1) {
  transition-delay: 0.05s;
}
.top-cards-grid > *:nth-child(2),
.experience-grid > *:nth-child(2),
.values-grid > *:nth-child(2),
.team-grid > *:nth-child(2),
.why-grid > *:nth-child(2),
.projects-container > *:nth-child(2),
.stats-strip > *:nth-child(2),
.career-pillars > *:nth-child(2),
.benefits-grid > *:nth-child(2) {
  transition-delay: 0.14s;
}
.top-cards-grid > *:nth-child(3),
.experience-grid > *:nth-child(3),
.values-grid > *:nth-child(3),
.team-grid > *:nth-child(3),
.why-grid > *:nth-child(3),
.stats-strip > *:nth-child(3),
.career-pillars > *:nth-child(3),
.benefits-grid > *:nth-child(3) {
  transition-delay: 0.22s;
}
.top-cards-grid > *:nth-child(4),
.experience-grid > *:nth-child(4),
.values-grid > *:nth-child(4),
.team-grid > *:nth-child(4),
.why-grid > *:nth-child(4),
.stats-strip > *:nth-child(4),
.benefits-grid > *:nth-child(4) {
  transition-delay: 0.30s;
}
.experience-grid > *:nth-child(5),
.why-grid > *:nth-child(5) {
  transition-delay: 0.38s;
}
.experience-grid > *:nth-child(6),
.why-grid > *:nth-child(6) {
  transition-delay: 0.46s;
}

/* Split-text / Letter-by-Letter Masked Heading Animation */
.text-animated-heading {
  display: inline-block;
  vertical-align: top;
}
.text-animated-heading .word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  white-space: nowrap;
  margin-right: 0.26em;
}
.text-animated-heading .char-anim {
  display: inline-block;
  opacity: 0;
  transform: translateY(115%);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--char-i, 0) * 16ms);
  will-change: opacity, transform;
}
.text-animated-heading.text-revealed .char-anim,
.is-revealed .text-animated-heading .char-anim {
  opacity: 1;
  transform: translateY(0);
}

/* Kickers, Subheadings & Badges Animation */
.kicker,
.hero-kicker,
.section-tag,
.hero-feature-badge,
.tag-row .pill {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.kicker.text-revealed,
.hero-kicker.text-revealed,
.section-tag.text-revealed,
.hero-feature-badge.text-revealed,
.tag-row .pill.text-revealed,
.text-revealed .kicker,
.is-revealed .kicker,
.text-revealed .hero-kicker,
.is-revealed .hero-kicker,
.text-revealed .section-tag,
.is-revealed .section-tag,
.text-revealed .hero-feature-badge,
.is-revealed .hero-feature-badge,
.text-revealed .pill,
.is-revealed .pill {
  opacity: 1;
  transform: translateY(0);
}

/* All Paragraphs, Descriptions, Body Text Scroll Reveal */
.text-reveal-block,
.text-fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.text-reveal-block.text-revealed,
.text-fade-up.text-revealed,
.is-revealed .text-reveal-block,
.is-revealed .text-fade-up {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle staggered delays for paragraphs in sequence */
.text-reveal-block:nth-of-type(1) { transition-delay: 0.04s; }
.text-reveal-block:nth-of-type(2) { transition-delay: 0.12s; }
.text-reveal-block:nth-of-type(3) { transition-delay: 0.20s; }
.text-reveal-block:nth-of-type(4) { transition-delay: 0.28s; }

/* -----------------------------------------
   PROJECT DETAIL PAGES (Video, Maps, Gallery)
----------------------------------------- */
.media-container {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 32px;
  margin-top: 24px;
}

.video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 28px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}

.video-poster:hover .play-circle {
  transform: scale(1.1);
}

.layout-preview-frame {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  position: relative;
}

.layout-preview-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.layout-preview-frame:hover img {
  transform: scale(1.02);
}

.map-embed-wrap {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 20px;
}

.map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.amenity-card-full {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
}

.amenity-card-full .ic {
  font-size: 28px;
  flex-shrink: 0;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.reel-card {
  aspect-ratio: 9 / 16;
  background: linear-gradient(135deg, #171819, #2b2c2d);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease;
}

.reel-card:hover {
  transform: translateY(-4px);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.social-card-btn {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s ease;
}

.social-card-btn:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

/* -----------------------------------------
   CTA BAND (Common across pages)
----------------------------------------- */
.cta-band {
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  margin: 80px auto;
  width: min(calc(100% - 48px), var(--max));
}

.cta-band h2 {
  font-size: clamp(34px, 4vw, 56px);
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 28px;
}

.cta-band-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Brochure CTA button row (project detail pages) */
.brochure-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* -----------------------------------------
   04 / WHY CHOOSE US & PILLARS
----------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.why-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14.5px;
  margin: 0;
}

/* -----------------------------------------
   05 / PROCESS (3-STEP HOW IT WORKS)
----------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  min-height: 290px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
}

.step-card span {
  font-size: 14px;
  font-weight: 700;
  color: #888;
}

.step-card h3 {
  font-size: 30px;
  margin: 70px 0 12px;
}

.step-card p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* -----------------------------------------
   06 / LOCATION HIGHLIGHTS & CONNECTIVITY
----------------------------------------- */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.loc-column {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.loc-card-header {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.loc-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7b7c79;
  display: block;
  margin-bottom: 6px;
}

.loc-card-header h3 {
  font-size: 26px;
  margin: 0;
}

.dist-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dist-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.dist-item:last-child {
  border-bottom: none;
}

.dist-item span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  min-width: 80px;
  background: var(--paper);
  padding: 4px 8px;
  border-radius: 6px;
  text-align: center;
}

.dist-item p {
  margin: 0;
  font-size: 14.5px;
  color: #444;
}

/* -----------------------------------------
   07 / CHANNEL PARTNER NETWORK & CAREERS
----------------------------------------- */
.partner-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

.partner-intro h2 {
  margin-bottom: 20px;
}

.partner-perks {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.perk-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
}

.perk-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.perk-box h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  margin: 0 0 4px;
}

.perk-box p {
  font-size: 14px;
  margin: 0;
}

.partner-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.03);
}

.partner-form-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.partner-form-card p {
  font-size: 14px;
  margin: 0 0 24px;
}

.styled-form label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #555;
  margin-bottom: 16px;
}

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

.styled-form input,
.styled-form select,
.styled-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.styled-form input:focus,
.styled-form select:focus,
.styled-form textarea:focus {
  border-color: var(--ink);
  background: #fff;
}

.full-btn {
  width: 100%;
  margin-top: 8px;
}

/* -----------------------------------------
   08 / LEADERSHIP TEAM
----------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px 26px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.07);
}

.team-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, #fffefa 0%, #f6ecda 100%);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.team-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--ink);
}

.team-role {
  font-size: 12.5px;
  font-weight: 600;
  color: #7b7c79;
  display: block;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 13.5px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

/* -----------------------------------------
   09 / FAQs
----------------------------------------- */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  padding-bottom: 60px;
}

.faq-contact-card {
  background: var(--cream);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-top: 36px;
}

.faq-contact-card p {
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 14px;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  list-style: none;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  margin-left: 12px;
  transition: transform 0.2s ease;
}

details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 14px 30px 0 0;
  font-size: 15px;
  line-height: 1.6;
}

/* -----------------------------------------
   10 / CONTACT & ENQUIRY SECTION
----------------------------------------- */
.contact {
  max-width: none;
  width: 100%;
  background: var(--dark-surface);
  color: #fff;
  padding: 120px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.contact .section-kicker {
  color: #9a9a95;
}

.contact h2 {
  color: #fff;
  font-size: clamp(48px, 6vw, 86px);
  margin-bottom: 20px;
}

.contact-lead {
  font-size: 17px;
  color: #bbb;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  transition: transform 0.2s ease;
}

.contact-method-item:hover {
  transform: translateX(4px);
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-method-item strong {
  display: block;
  font-size: 14px;
  color: #fff;
}

.contact-method-item p {
  margin: 0;
  font-size: 13.5px;
  color: #aaa;
}

.contact-form {
  background: #202222;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-lg);
  padding: 42px 36px;
}

.form-title {
  color: #fff;
  font-size: 22px;
  margin: 0 0 24px;
}

.form-group-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: block;
  font-size: 12.5px;
  color: #bbb;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 0;
  border-bottom: 1.5px solid #4a4b4b;
  background: transparent;
  color: #fff;
  padding: 12px 0;
  font-family: inherit;
  font-size: 15px;
  outline: 0;
  resize: vertical;
  transition: border-color 0.2s ease;
}

.contact-form select {
  background: #202222;
  border-radius: 0;
}

.contact-form select option {
  background: #202222;
  color: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
}

.contact-form .yellow-btn {
  margin-top: 10px;
  width: 100%;
}

.form-note {
  font-size: 13.5px;
  color: #ffea2f;
  margin-top: 16px;
  text-align: center;
}

/* -----------------------------------------
   THANK YOU PAGE
----------------------------------------- */
.thanks-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  max-width: 680px;
  margin: 80px auto;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}

.thanks-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 32px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
}

.thanks-card h1 {
  font-size: 36px;
  margin: 0 0 16px;
}

.thanks-card p {
  font-size: 16px;
  margin: 0 0 32px;
}

/* -----------------------------------------
   FOOTER
----------------------------------------- */
.footer {
  background: #111212;
  color: #999;
  padding: 80px max(24px, calc((100vw - var(--max)) / 2)) 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .brand {
  color: #fff;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #888;
  max-width: 320px;
}

.footer-col h4,
.footer-links-col h4 {
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  font-size: 16px;
  margin: 0 0 18px;
}

.footer-col ul,
.footer-links-col ul {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col li,
.footer-links-col li {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0;
  margin: 0;
}

.footer-col a,
.footer-links-col a {
  font-size: 14px;
  color: #888;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-col a:hover,
.footer-links-col a:hover {
  color: #fff;
}

.footer-contact-item {
  font-size: 14px;
  color: #888;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-item svg,
.footer-ic {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  min-height: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0;
  fill: none !important;
  stroke: var(--yellow, #ffea2f) !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  display: inline-block;
}

.footer-contact-item a {
  color: #888;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 13px;
  color: #666;
}

.back-to-top {
  color: #aaa;
  transition: color 0.2s ease;
}

.back-to-top:hover {
  color: #fff;
}

/* -----------------------------------------
   LIGHTBOX MODAL
----------------------------------------- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: min(960px, 94vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-content h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  margin: 0 0 16px;
  padding-right: 40px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 0;
  background: rgba(0, 0, 0, 0.08);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.16);
}

.lightbox-img-wrap {
  overflow: auto;
  border-radius: 12px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-height: 72vh;
  object-fit: contain;
}



/* -----------------------------------------
   RESPONSIVE DESIGN (Adaptive Mobile Optimization)
----------------------------------------- */

/* Tablet & Smaller Laptops (<= 1100px) */
@media (max-width: 1100px) {
  .nav-links {
    gap: 18px;
    font-size: 14px;
  }
  .nav-phone,
  .nav-wa {
    display: none;
  }
  .nav-wa-icon {
    display: inline-flex;
  }
  .top-cards-grid,
  .experience-grid,
  .offerings-grid,
  .team-grid,
  .values-grid,
  .why-grid,
  .reels-grid,
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 36px;
  }
}

/* Medium Tablets & Mobile Landscape (<= 900px) */
@media (max-width: 900px) {
  /* Navigation Bar */
  .nav-wrap,
  .navbar {
    width: calc(100% - 24px);
    top: 12px;
  }
  .nav {
    height: 56px;
    padding: 0 8px 0 16px;
    border-radius: 30px;
  }
  .brand-logo { height: 32px; }
  .brand-name { font-size: 15px; letter-spacing: 0.03em; }

  /* Mobile Drawer Menu */
  .nav-links {
    position: absolute;
    display: none;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 16px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
    z-index: 1001;
  }
  .nav-links.open { display: flex; animation: fadeSlideUp 0.25s ease both; }
  .nav-links a {
    padding: 11px 12px;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    border-radius: 12px;
    border-bottom: 1px solid rgba(23, 24, 25, 0.05);
    transition: background 0.15s ease, color 0.15s ease;
  }
  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(0, 0, 0, 0.04);
    color: var(--ink);
  }
  .nav-links a.active::after { display: none; }
  .nav-links a:last-of-type { border-bottom: none; }

  .mobile-nav-cta {
    display: block;
    margin-top: 8px;
    padding: 13px 18px !important;
    background: var(--yellow) !important;
    border-radius: 999px !important;
    text-align: center;
    font-weight: 600 !important;
    color: var(--ink) !important;
    border-bottom: none !important;
    box-shadow: 0 4px 12px rgba(255, 234, 47, 0.3);
  }
  .mobile-nav-cta:hover {
    background: var(--yellow-hover) !important;
  }

  .nav-cta, .nav-cta-btn, .nav-phone, .nav-wa { display: none; }
  .nav-wa-icon { display: inline-flex; width: 38px; height: 38px; }
  .menu-toggle, .menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    border: 1px solid rgba(23, 24, 25, 0.1);
    cursor: pointer;
    gap: 3.5px;
  }
  .menu-toggle span, .menu-btn span {
    display: block;
    width: 17px;
    height: 2px;
    background: var(--ink, #171819);
    border-radius: 2px;
    margin: 0;
  }

  /* Hero Section (3D Overlapping Luxury Layout on Mobile & Tablet) */
  .hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    padding: 0;
    display: block;
    background: radial-gradient(circle at 52% 45%, #fffefa 0%, #fbfaf6 55%, #f5ecdb 100%);
  }
  .hero-title-area {
    position: relative;
    width: 100%;
    padding-top: clamp(82px, 12vh, 110px);
    text-align: center;
    z-index: 2;
    margin-bottom: 0;
  }
  .small-title {
    position: relative;
    z-index: 5;
    font-size: clamp(12.5px, 3.2vw, 15px);
    line-height: 1.35;
    margin-bottom: clamp(14px, 2.5vh, 26px);
    color: #4a4b4a;
    padding: 0 16px;
    margin-inline: auto;
  }
  .huge-title {
    position: relative;
    z-index: 1;
    font-size: clamp(42px, 13vw, 76px);
    line-height: 0.82;
    letter-spacing: -0.06em;
    white-space: nowrap;
    color: #18191a;
  }
  .hero-building {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: clamp(340px, 115vw, 560px);
    max-height: 58vh;
    pointer-events: none;
    margin: 0;
    display: block;
  }
  .hero-building img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .hero-left {
    position: absolute;
    z-index: 10;
    left: clamp(12px, 3.5vw, 24px);
    bottom: clamp(16px, 3vh, 32px);
    width: 46%;
    max-width: 190px;
    padding: 0;
    margin: 0;
    text-align: left;
  }
  .hero-left p {
    font-size: clamp(11.5px, 2.9vw, 13.5px);
    line-height: 1.35;
    margin-bottom: 8px;
    color: #222322;
    font-weight: 500;
  }
  .yellow-button {
    display: inline-flex;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    white-space: nowrap;
    min-width: unset;
    width: auto;
    box-shadow: 0 4px 14px rgba(255, 234, 47, 0.35);
  }
  .hero-right {
    position: absolute;
    z-index: 10;
    right: clamp(12px, 3.5vw, 24px);
    bottom: clamp(16px, 3vh, 32px);
    width: 48%;
    max-width: 205px;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
  }
  .tags-stack {
    align-items: flex-end;
    gap: 5px;
  }
  .tag-row-top {
    justify-content: flex-end;
  }
  .tag-row-bottom {
    justify-content: flex-end;
    gap: 4px;
    flex-wrap: wrap;
  }
  .tag {
    font-size: 11px;
    padding: 4.5px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(23, 24, 25, 0.2);
    color: #171819;
    font-weight: 600;
  }
  .tag-icon svg {
    width: 11px;
    height: 11px;
  }
  .hero-contact-btn {
    padding: 7px 15px;
    font-size: 12.5px;
    margin-top: 1px;
    white-space: nowrap;
  }

  /* Stats Strip */
  .stats-strip {
    padding: 26px 16px;
  }
  .stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    width: 100%;
    justify-items: center;
    text-align: center;
  }
  .stat-box {
    align-items: center;
    text-align: center;
  }
  .stat-number {
    font-size: clamp(26px, 5.5vw, 34px);
  }
  .stat-label {
    font-size: 13px;
  }
  .stat-divider { display: none; }

  /* Collections Section */
  .collections-section {
    padding: 60px 16px 70px;
  }
  .sec-header-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 34px !important;
  }
  .sec-headline {
    font-size: clamp(28px, 6vw, 40px);
    line-height: 1.1;
  }
  .sec-header-btn {
    width: 100%;
    justify-content: space-between;
    padding: 11px 16px 11px 22px;
    font-size: 14.5px;
    margin-bottom: 8px;
  }
  .top-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 8px;
  }
  .tour-card {
    aspect-ratio: 16 / 13;
    min-height: 250px;
    border-radius: 20px;
  }
  .tour-card-body {
    padding: 18px 16px;
  }
  .tour-card-title {
    font-size: 18px;
  }
  .tour-card-meta {
    font-size: 12.5px;
  }
  .tour-card-desc {
    max-height: 60px;
    opacity: 0.95;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.4;
  }

  /* Experience Section */
  .experience-section {
    padding: 60px 16px 70px;
  }
  .experience-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
  }
  .experience-headline {
    font-size: clamp(28px, 6vw, 40px);
    line-height: 1.1;
  }
  .experience-sub-text {
    text-align: left;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.6;
    color: #5d5e5b;
    border-top: 1px solid rgba(23, 24, 25, 0.08);
    padding-top: 12px;
    width: 100%;
  }
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .exp-card {
    aspect-ratio: 16 / 11.5;
    min-height: 230px;
    border-radius: 20px;
  }
  .exp-card-body {
    padding: 16px 14px;
  }
  .exp-card-title {
    font-size: 17px;
  }
  .exp-card-meta {
    font-size: 12px;
  }
  .exp-card-desc {
    max-height: 55px;
    opacity: 0.95;
    margin-top: 5px;
    font-size: 11.5px;
    line-height: 1.4;
  }
  .exp-footer-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-top: 10px;
  }
  .exp-footer-text {
    font-size: 14px;
    text-align: center;
    max-width: 100%;
  }
  .exp-footer-row .sec-header-btn {
    width: 100%;
    justify-content: space-between;
  }

  /* CTA Section */
  .cta {
    width: calc(100% - 32px);
    margin: 52px auto;
    padding: 42px 20px;
    border-radius: 24px;
  }
  .cta-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .cta h2 {
    font-size: clamp(30px, 8vw, 46px);
    line-height: 1.05;
  }
  .cta p {
    font-size: 15px;
    line-height: 1.55;
    margin-top: 12px;
  }
  .cta-button {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    font-size: 15px;
  }

  /* Footer */
  .footer {
    padding: 60px 20px 32px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Subpages & General Elements (About, Careers, Projects, Contact) */
  .section {
    padding: 50px 16px;
    width: 100%;
  }
  .page-head {
    padding: 90px 16px 36px;
  }
  .page-head h1 {
    font-size: clamp(28px, 7vw, 44px);
    line-height: 1.1;
  }
  .page-head p {
    font-size: 14px;
    line-height: 1.55;
    max-width: 100%;
  }
  .page-head-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .page-head-actions .yellow-btn,
  .page-head-actions .outline-btn,
  .page-head-actions .wa-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 18px;
    font-size: 14px;
  }
  .breadcrumb {
    font-size: 12px;
    margin-top: 16px;
  }
  .section-kicker {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }
  .section-heading h2 {
    font-size: clamp(24px, 6vw, 34px);
    line-height: 1.15;
  }
  .section-heading p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* ---- Project Detail Page (golden-heights / tranquil-farms) ---- */

  /* Locations grid: stack to single column */
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .loc-column {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .loc-card-header h3 {
    font-size: 18px;
  }
  .dist-item {
    gap: 12px;
    padding: 8px 0;
  }
  .dist-item span {
    min-width: 64px;
    font-size: 13px;
    padding: 3px 6px;
  }
  .dist-item p {
    font-size: 13px;
  }

  /* Map embed: reduce height on mobile */
  .map-embed-wrap {
    height: 240px;
    margin-top: 14px;
  }

  /* Amenity grid: 2 columns on tablet */
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .amenity-card-full {
    padding: 16px;
    font-size: 13.5px;
    border-radius: 14px;
    gap: 10px;
  }

  /* Social grid: 2 columns */
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
  }
  .social-card-btn {
    padding: 16px 12px;
    font-size: 13.5px;
    border-radius: 14px;
  }

  /* Layout/plan preview frames */
  .layout-preview-frame {
    border-radius: 14px;
  }
  .zoom-btn {
    font-size: 11px;
    padding: 5px 10px;
    bottom: 10px;
    right: 10px;
  }

  /* Video box */
  .play-circle {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  /* Brochure / media container button rows */
  .media-container > div[style*="display: flex"],
  .media-container > div[style*="display:flex"] {
    flex-direction: column;
    align-items: stretch;
  }
  p.lead {
    font-size: 15px;
    line-height: 1.6;
  }
  .intro-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .intro-grid h2 {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.15;
  }
  .partner-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .experience-badge {
    margin-top: 16px;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.45;
  }
  .about-points {
    gap: 8px;
  }
  .point-item {
    font-size: 13.5px;
    line-height: 1.45;
    padding: 8px 0;
  }

  /* Stats Strip — Clean 2x2 Grid (not overlapping) */
  .stats-strip {
    padding: 28px 16px;
    margin: 0;
  }
  .stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    justify-items: center;
    text-align: center;
  }
  .stat-box {
    align-items: center;
    text-align: center;
    padding: 14px 8px;
    background: rgba(0,0,0,0.02);
    border-radius: 16px;
    width: 100%;
  }
  .stat-number {
    font-size: clamp(22px, 5.5vw, 30px);
    line-height: 1.2;
  }
  .stat-label {
    font-size: 12px;
    line-height: 1.3;
    margin-top: 2px;
  }
  .stat-divider { display: none; }

  /* Projects — 2 Cards Visible Side by Side */
  .projects-container {
    grid-template-columns: 1fr;
    gap: 20px;
    width: calc(100% - 32px);
  }
  .project-showcase,
  .project-showcase.reversed {
    border-radius: 20px;
  }
  .project-visual {
    height: 200px;
    min-height: 200px;
  }
  .project-details {
    padding: 18px 16px 20px;
    gap: 12px;
  }
  .proj-num {
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
  }
  .project-details h3 {
    font-size: 19px;
    margin-bottom: 2px;
  }
  .project-loc {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .project-desc {
    font-size: 12.5px;
    line-height: 1.5;
  }
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
  }
  .spec-card strong {
    font-size: 13px;
  }
  .spec-card span {
    font-size: 10px;
  }
  .amenities-wrap h4 {
    font-size: 11px;
    margin-bottom: 6px;
  }
  .amenity-pill {
    font-size: 10.5px;
    padding: 3px 8px;
  }
  .project-ctas {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .project-ctas .yellow-btn,
  .project-ctas .outline-btn,
  .project-ctas .wa-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 10px 14px;
    font-size: 13px;
  }
  .project-badge {
    font-size: 10px;
    padding: 5px 10px;
    top: 12px;
    left: 12px;
  }
  .zoom-btn {
    font-size: 11px;
    padding: 5px 10px;
    bottom: 10px;
    right: 10px;
  }

  /* About Page — Values Grid */
  .values-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .value-card {
    padding: 20px 18px;
    border-radius: 18px;
  }
  .value-card .card-num {
    font-size: 13px;
  }
  .value-card h3 {
    font-size: 17px;
    margin: 6px 0 4px;
  }
  .value-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* About Page — Team Grid */
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  .team-card {
    padding: 18px 14px;
    border-radius: 18px;
  }
  .team-avatar {
    width: 44px;
    height: 44px;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .team-card h3 {
    font-size: 15px;
  }
  .team-role {
    font-size: 11.5px;
  }
  .team-card p {
    font-size: 12.5px;
    line-height: 1.45;
  }

  /* Careers — Why Grid (2 cols) */
  .why-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  .why-card {
    padding: 18px 16px;
    border-radius: 18px;
  }
  .why-icon {
    margin-bottom: 10px;
  }
  .why-icon svg {
    width: 20px;
    height: 20px;
  }
  .why-card h3 {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .why-card p {
    font-size: 12.5px;
    line-height: 1.45;
  }

  /* Careers — Partner Form */
  .partner-intro h2 {
    font-size: clamp(22px, 6vw, 30px);
    line-height: 1.15;
  }
  .partner-form-card {
    padding: 20px 16px;
    border-radius: 20px;
  }
  .partner-form-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .partner-form-card > p {
    font-size: 13px;
  }
  .contact-methods {
    gap: 14px;
  }
  .contact-method-item {
    gap: 10px;
  }

  /* CTA Band */
  .cta-band {
    padding: 44px 20px;
    text-align: center;
  }
  .cta-band h2 {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.15;
  }
  .cta-band p {
    font-size: 14px;
    line-height: 1.55;
  }
  .cta-band-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .cta-band-actions .yellow-btn,
  .cta-band-actions .outline-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 18px;
    font-size: 14px;
  }
  .brochure-btns {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .brochure-btns .yellow-btn,
  .brochure-btns .outline-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 18px;
    font-size: 14px;
  }

  .contact-layout,
  .partner-layout,
  .form-group-wrap,
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Mobile Scroll Reveals without side overflow */
  .reveal-from-left,
  .reveal-from-right {
    transform: translateY(20px) !important;
  }
  .reveal-from-left.is-revealed,
  .reveal-from-right.is-revealed {
    animation: fadeSlideUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) both !important;
  }
}

/* Smartphone Portrait Screens (<= 600px) */
@media (max-width: 600px) {
  /* Navigation Bar */
  .nav-wrap,
  .navbar {
    width: calc(100% - 20px);
    top: 10px;
  }
  .nav {
    height: 52px;
    padding: 0 6px 0 14px;
  }
  .brand-logo { height: 28px; }
  .brand-name { font-size: 14px; }
  .nav-wa-icon { width: 36px; height: 36px; }
  .nav-wa-icon svg { width: 19px; height: 19px; }
  .menu-toggle { width: 36px; height: 36px; }

  /* Hero Section */
  .hero-title-area {
    padding-top: clamp(74px, 11vh, 92px);
  }
  .small-title {
    font-size: clamp(11.5px, 3.2vw, 13px);
    margin-bottom: clamp(6px, 1.5vh, 12px);
  }
  .huge-title {
    font-size: 15.5vw;
    letter-spacing: -0.05em;
    white-space: nowrap;
    margin: 0;
  }
  .hero-building {
    width: clamp(320px, 120vw, 440px);
    bottom: -15px;
    max-height: 52vh;
  }
  .hero-left {
    left: 8px;
    bottom: 12px;
    width: 48%;
  }
  .hero-left p {
    font-size: 10.5px;
    margin-bottom: 4px;
  }
  .yellow-button {
    padding: 5px 10px;
    font-size: 11px;
    border-radius: 999px;
  }
  .hero-right {
    right: 8px;
    bottom: 12px;
    width: 48%;
  }
  .tag {
    font-size: 10px;
    padding: 3.5px 7px;
  }
  .tag-icon svg {
    width: 10px;
    height: 10px;
  }
  .hero-contact-btn {
    font-size: 11.5px;
    padding: 6px 12px;
  }

  /* Home Page Cards — Single Column on 600px Mobile */
  .top-cards-grid,
  .experience-grid,
  .offerings-grid,
  .reels-grid,
  .social-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .tour-card {
    aspect-ratio: 16 / 12;
    min-height: 240px;
  }
  .exp-card {
    aspect-ratio: 16 / 11;
    min-height: 220px;
  }

  /* Subpage grids stay 2-col even at 600px */
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .values-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .team-card {
    padding: 14px 12px;
    border-radius: 16px;
  }
  .team-avatar {
    width: 38px;
    height: 38px;
    font-size: 15px;
    margin-bottom: 8px;
  }
  .team-card h3 { font-size: 13.5px; }
  .team-role { font-size: 10.5px; }
  .team-card p { font-size: 11.5px; line-height: 1.4; }
  .why-card {
    padding: 14px 12px;
    border-radius: 16px;
  }
  .why-card h3 { font-size: 13.5px; }
  .why-card p { font-size: 11.5px; line-height: 1.4; }
  .why-icon svg { width: 18px; height: 18px; }

  /* Projects — keep stacked but compact */
  .projects-container {
    width: calc(100% - 24px);
    gap: 16px;
  }
  .project-visual {
    height: 180px;
    min-height: 180px;
  }
  .project-details {
    padding: 14px 14px 16px;
    gap: 10px;
  }
  .project-details h3 { font-size: 17px; }
  .project-desc { font-size: 12px; }
  .project-ctas {
    gap: 6px;
  }
  .project-ctas .yellow-btn,
  .project-ctas .outline-btn,
  .project-ctas .wa-btn {
    padding: 9px 12px;
    font-size: 12.5px;
  }

  /* Stats 2x2 on 600px */
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 12px;
  }
  .stat-box {
    padding: 12px 6px;
    border-radius: 14px;
  }
  .stat-number { font-size: clamp(20px, 5.5vw, 26px); }
  .stat-label { font-size: 11px; }

  /* Section Headings */
  .sec-headline,
  .experience-headline {
    font-size: clamp(25px, 6.8vw, 34px);
  }
  .sec-kicker {
    font-size: 11.5px;
  }
  .sec-header-row {
    margin-bottom: 30px !important;
  }

  /* Subpages */
  .section {
    padding: 40px 14px;
  }
  .intro-grid,
  .partner-grid {
    gap: 20px !important;
  }
  .experience-badge {
    padding: 11px 14px;
    font-size: 12.5px;
  }
  .about-points { gap: 6px; }
  .point-item { font-size: 13px; padding: 6px 0; }

  /* CTA Band 600px */
  .cta-band { padding: 36px 16px; }
  .cta-band h2 { font-size: clamp(21px, 5.5vw, 28px); }
  .cta-band p { font-size: 13.5px; }
  .cta-band-actions .yellow-btn,
  .cta-band-actions .outline-btn {
    padding: 11px 16px;
    font-size: 13.5px;
  }

  /* Form Elements (No Auto-Zoom on iOS) */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px !important;
    padding: 12px 14px;
    border-radius: 12px;
  }

  /* Project detail pages — 600px refinements */
  .section-heading {
    gap: 10px;
    margin-bottom: 24px;
  }
  .locations-grid {
    gap: 16px;
  }
  .loc-column {
    padding: 16px 14px;
    border-radius: 14px;
  }
  .loc-card-header h3 {
    font-size: 16px;
  }
  .dist-item span {
    min-width: 56px;
    font-size: 12px;
  }
  .dist-item p {
    font-size: 12px;
  }
  .map-embed-wrap {
    height: 200px;
  }
  /* Amenity grid: single column on small phones */
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .amenity-card-full {
    padding: 14px 12px;
    font-size: 13px;
    border-radius: 12px;
  }
  /* Social grid: 2 columns maintained */
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .social-card-btn {
    padding: 14px 10px;
    font-size: 13px;
    border-radius: 12px;
  }
  .play-circle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  /* Page head actions — wa-btn full width on 600px */
  .page-head-actions .wa-btn {
    width: 100%;
    justify-content: center;
    padding: 11px 16px;
    font-size: 13.5px;
  }

  /* Footer Single Column */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer {
    padding: 48px 16px 28px;
  }
}

/* Portrait hero: centered calls to action, tags, then the villa. */
@media (max-width: 600px) and (orientation: portrait) {
  .hero {
    min-height: 100svh;
    height: 100svh;
  }
  .hero-title-area {
    padding-top: clamp(76px, 12vh, 102px);
  }
  .small-title {
    max-width: 310px;
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 8px;
  }
  .huge-title {
    font-size: 21vw;
    line-height: 0.82;
    letter-spacing: -0.06em;
    white-space: nowrap;
    padding: 0 4px;
  }
  .hero-title-line {
    display: block;
  }
  .hero-building {
    top: auto;
    bottom: -30px;
    width: 132vw;
    min-width: 0;
    max-width: none;
    max-height: none;
  }
  .hero-left,
  .hero-right {
    left: 50%;
    right: auto;
    width: min(74%, 320px);
    max-width: none;
    padding: 0;
    transform: translateX(-50%);
    bottom: auto;
  }
  .hero-left {
    top: clamp(222px, 36svh, 310px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-left p {
    display: none;
  }
  .yellow-button,
  .hero-contact-btn {
    width: 100%;
    height: 52px;
    min-height: 52px;
    padding: 12px 18px;
    font-size: 14px;
    line-height: 1.1;
    justify-content: center;
    margin-top: 0;
  }
  .hero-button-arrow {
    margin-left: 8px;
    font-size: 24px;
    line-height: 0.7;
  }
  .hero-right {
    top: clamp(268px, 44svh, 372px);
    align-items: center;
    gap: 8px;
  }
  .hero-contact-btn {
    order: 1;
  }
  .tags-stack {
    order: 2;
    align-items: center;
    gap: 6px;
  }
  .tag-row-top,
  .tag-row-bottom {
    justify-content: center;
  }
  .tag-row-bottom {
    flex-wrap: nowrap;
    gap: 6px;
  }
  .tag {
    padding: 6px 12px;
    font-size: 11px;
    background: rgba(255, 255, 255, 0.9);
  }
}

/* Retain the complete mobile composition on compact phone screens. */
@media (max-width: 600px) and (orientation: portrait) and (max-height: 650px) {
  .hero-title-area {
    padding-top: 74px;
  }
  .huge-title {
    font-size: clamp(52px, 17.5vw, 64px);
  }
  .hero-left {
    top: 220px;
  }
  .hero-right {
    top: 270px;
  }
  .hero-building {
    top: auto;
    bottom: -24px;
    width: 132vw;
  }
}

/* Keep the artwork clear of the compact header in mobile landscape. */
@media (max-width: 600px) and (orientation: landscape) {
  .hero-building {
    width: clamp(300px, 42vw, 430px);
    max-height: none;
    bottom: -30px;
  }
}

/* Extra Small Screens (<= 380px) */
@media (max-width: 380px) {
  .brand-name { font-size: 13px; }
  .brand-logo { height: 26px; }
  .huge-title { font-size: 18vw; }
  .small-title { font-size: 11px; }
  .sec-headline,
  .experience-headline { font-size: 23px; }
  .cta h2 { font-size: 26px; }
  .stat-number { font-size: 24px; }
  .stat-label { font-size: 12px; }
  .nav-actions { gap: 6px; }
  .hero-left p { display: none; }
}
