:root {
  /* --ink: #12292b; */
  --ink: #2E241C;
  --ink-soft: #1c393c;
  --brass: #b8874a;
  --brass-light: #d9b273;
  --brick: #9c4a2e;
  --brick-deep: #7c3a24;
  --sand: #f4eee0;
  --sand-deep: #ece2cc;
  --marble: #ffffff;
  --ink-text: #1d2b28;
  --muted: #5c6b66;
  --line: rgba(18, 41, 43, 0.12);
  --line-light: rgba(251, 248, 242, 0.18);

  /* Krisumi Indo-Japanese accent palette, pulled from brand deck */
  --red: #b32131;
  --red-deep: #7d1520;
  --red-light: #d9707b;
  --paper: #ece3cf;
  --paper-deep: #ded1af;
  --paper-line: rgba(124, 21, 32, 0.14);

  --font-display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1240px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 26px;
  --shadow-soft: 0 20px 50px -20px rgba(18, 41, 43, 0.35);
  --shadow-brass: 0 12px 30px -12px rgba(184, 135, 74, 0.55);
  --shadow-red: 0 12px 30px -12px rgba(179, 33, 49, 0.5);
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Fluid base font-size: 15px on small phones, scales up smoothly to 19px on
   large / ultra-wide desktop screens instead of staying fixed at 16px. */
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-text);
  background: var(--marble);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: clamp(13.5px, 0.55vw + 11.5px, 16px);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none !important;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

p {
  margin: 0;
  line-height: 1.65;
}

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
}


@media (min-width: 1600px) {
  :root {
    --container: 1400px;
  }
}

@media (min-width: 1920px) {
  :root {
    --container: 1560px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Jali lattice motif ---------- */
.jali-divider {
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='46' viewBox='0 0 60 46'%3E%3Cg fill='none' stroke='%23B8874A' stroke-width='1.4' opacity='0.55'%3E%3Cpath d='M30 2 L58 23 L30 44 L2 23 Z'/%3E%3Ccircle cx='30' cy='23' r='9'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: clamp(13px, 0.35vw + 11.5px, 14px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 10px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brass);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: 30px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(23px, 1.35vw + 18px, 31px);
  line-height: 1.24;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-head p {
  color: var(--muted);
  font-size: clamp(14.5px, 0.3vw + 13px, 17px);
  text-align: justify;
  text-align-last: left;
}

.section-head.center p {
  text-align: center;
  text-align-last: center;
}

section {
  position: relative;
}

.section-pad {
  padding: 56px 0;
}

@media (min-width: 1600px) {
  .section-pad {
    padding: 76px 0;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 40px 0;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: clamp(13px, 0.2vw + 12px, 15px);
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.3s cubic-bezier(.2, .8, .2, 1), box-shadow 0.3s, background 0.3s, color 0.3s;
  white-space: nowrap;
}

.btn:disabled,
.btn.is-loading {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-brass {
  background: var(--brass);
  color: var(--marble);
  box-shadow: var(--shadow-brass);
}

.btn-brass:hover {
  background: var(--brick);
  box-shadow: 0 14px 32px -10px rgba(124, 58, 36, .55);
}

.btn-red {
  background: var(--red);
  color: var(--marble);
  box-shadow: var(--shadow-red);
}

.btn-red:hover {
  background: var(--red-deep);
  box-shadow: 0 14px 32px -10px rgba(125, 21, 32, .6);
}

.btn-outline {
  border-color: rgba(251, 248, 242, 0.5);
  color: var(--marble);
}

.btn-outline:hover {
  background: rgba(251, 248, 242, 0.12);
}

.btn-outline-ink {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline-ink:hover {
  background: var(--ink);
  color: var(--marble);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-sm {
  padding: 10px 18px;
  font-size: clamp(13.5px, 0.2vw + 12.5px, 15px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 16px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.site-header.is-scrolled {
  background: #514033;
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .6);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--marble);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--brass-light);
  flex-shrink: 0;
}

.brand-text {
  line-height: 1.15;
}

.brand-text img{
  width: 140px;
  filter: brightness(0) invert(1);
}

.brand-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(18px, 0.3vw + 16px, 20px);
  letter-spacing: 0.01em;
  color: var(--marble);
}

.brand-text span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-top: 2px;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: clamp(22px, 1.4vw, 34px);
}

.main-menu a {
  color: var(--marble);
  font-size: clamp(14.5px, 0.3vw + 13px, 16.5px);
  font-weight: 600;
  opacity: 0.9;
  position: relative;
  padding: 4px 0;
}

.main-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 1.5px;
  width: 0;
  background: var(--brass);
  transition: width 0.3s ease;
}

.main-menu a:hover,
.main-menu a.active {
  opacity: 1;
}

.main-menu a:hover::after,
.main-menu a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--marble);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 991px) {
  .main-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-actions .btn-brass {
    display: none;
  }

}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--ink);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(.2, .8, .2, 1);
  display: flex;
  flex-direction: column;
  padding: 24px 24px 32px;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-drawer-close {
  background: none;
  border: 1px solid rgba(251, 248, 242, .3);
  color: var(--marble);
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.mobile-drawer ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-drawer a {
  color: var(--marble);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid rgba(251, 248, 242, .1);
  display: block;
}

.mobile-drawer-foot {
  margin-top: auto;
  color: rgba(251, 248, 242, .7);
  font-size: 14px;
}

.mobile-drawer-foot a {
  color: var(--brass-light);
}

/* ---------- Hero / Banner ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--marble);
  overflow: hidden;
  padding: 116px 0 48px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stronger, cleaner overlay for legible text at every breakpoint */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
   linear-gradient(105deg, rgb(24 22 20 / 96%) 0%, rgba(36, 28, 22, .78) 38%, rgba(36, 28, 22, .25) 70%, rgb(41 31 23 / 55%) 100%), radial-gradient(1000px 600px at 12% 110%, rgb(201 146 75 / 18%), transparent 60%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cg fill='none' stroke='%23D9B273' stroke-width='1'%3E%3Cpath d='M42 2 L82 42 L42 82 L2 42 Z'/%3E%3Ccircle cx='42' cy='42' r='20'/%3E%3Cpath d='M42 22 L62 42 L42 62 L22 42 Z'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: linear-gradient(180deg, transparent, #000 25%, #000 70%, transparent);
}

/* Wraps the copy + form so mobile can give it a solid background below the image */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-eyebrow {
  color: var(--brass-light);
}

.hero-eyebrow::before {
  background: var(--brass-light);
}

.hero h1 {
  font-size: clamp(30px, 2.2vw + 20px, 34px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--marble);
}

.hero h1 em {
  font-style: normal;
  color: var(--brass-light);
}

/* Clean highlight bullets — replaces the old paragraph + pill cluster */
.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}

.hero-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(16px, 0.4vw + 14px, 16px);
  color: rgba(251, 248, 242, 0.95);
  font-weight: 500;
}

.hero-highlights i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(217, 178, 115, 0.18);
  color: var(--brass-light);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Single, uncluttered price line — replaces the old triple-stat box row */
.hero-price-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  width: 80%;
  border-top: 1px solid rgb(175 127 32 / 65%);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: heroLineIn 0.8s ease-out 0.4s forwards;
}

.hero-price-line::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -10%;
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--brass-light), transparent);
  animation: heroLineSweep 2.8s ease-in-out 1.2s infinite;
}

@keyframes heroLineIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLineSweep {
  0%   { left: -10%; }
  100% { left: 110%; }
}

.hero-price-label {
     font-size: clamp(13px, 0.2vw + 15px, 17px);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgb(255 255 255);
    font-weight: 600;
}

.hero-price-value {
  font-family: var(--font-display);
  font-size: clamp(32px, 1.2vw + 25px, 44px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(100deg, var(--brass-light) 30%, #fff5df 45%, var(--brass-light) 60%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: priceShine 3.5s ease-in-out infinite;
}

@keyframes priceShine {
  0% { background-position: 200% 0; }
  100% { background-position: -20% 0; }
}

/* Desktop: quick stats replace the CTA buttons — the form card handles conversion */
.hero-quick-stats {
  display: flex;
  gap: 60px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.hero-quick-stats div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-quick-stats strong {
  font-family: var(--font-display);
  font-size: clamp(21px, 0.6vw + 17px, 28px);
  font-weight: 800;
  color: var(--marble);
  line-height: 1;
}

.hero-quick-stats span {
  font-size: clamp(11.5px, 0.15vw + 10.5px, 13px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(251, 248, 242, 0.6);
}

/* Mobile-only button row (hidden on desktop; shown again in the 767px query below) */
.hero-cta-row {
  display: none;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Hero enquiry form card (right side) — compact, classy, framed in a hairline gold border */
.hero-form-card {
  background: var(--marble);
  border-radius: var(--radius-md);
  border: 1px solid rgba(217, 178, 115, 0.35);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
  z-index: 2;
  max-width: 360px;
  min-width: 370px;
  margin-left: auto;
}

.hero-form-top {
  background: #b32131;
  color: var(--marble);
  padding: 14px 20px;
  text-align: center;
  position: relative;
}

.hero-form-top::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 34px;
  height: 2px;
  background: var(--brass-light);
}

.hero-form-top strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(15.5px, 0.25vw + 14px, 18px);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero-form-top span {
  display: block;
  font-size: clamp(11.5px, 0.15vw + 10.5px, 13px);
  color: rgba(251, 248, 242, 0.7);
  margin-top: 3px;
}

.hero-form-body {
  padding: 18px 20px 20px;
} 

.hero-form-body .form-field {
  margin-bottom: 10px;
}

.hero-form-body input,
.hero-form-body select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: clamp(13px, 0.2vw + 12px, 14.5px);
  background: var(--sand);
  transition: border-color 0.3s ease;
}

.hero-form-body input:focus,
.hero-form-body select:focus {
  border-color: var(--brass);
  outline: none;
}

.phone-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 8px;
}

/* Prefix-style phone field used across all lead forms */
.phone-row--prefix {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--sand);
}

.phone-row--prefix .phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: clamp(15px, 0.2vw + 13.5px, 16.5px);
  font-weight: 600;
  color: var(--ink);
  background: var(--sand-deep);
  border-right: 1px solid var(--line);
}

.phone-row--prefix input {
  border: none !important;
  background: transparent !important;
  flex: 1;
}

.phone-row--prefix:focus-within {
  border-color: var(--brass);
}

.hero-form-body .btn {
  padding: 11px 20px;
  font-size: clamp(13px, 0.2vw + 12px, 14.5px);
}

.hero-form-note {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 8px;
  text-align: center;
}

.hero-form-status {
  margin-top: 10px;
  font-size: clamp(13.5px, 0.15vw + 12.5px, 15px);
  color: var(--brick);
  text-align: center;
  min-height: 16px;
}

@media (min-width: 1600px) {
  .hero-form-card {
    max-width: 480px;
    justify-self: end;
  }
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-form-card {
   width: 100%;
  }
  .site-header{
    background: rgb(46 36 28);
  }
}

/* Mobile: image sits clearly on top; copy + form sit below on a solid dark
   panel (no image) that keeps the jali pattern; button row replaces the
   desktop quick-stats. */
@media (max-width: 767px) {
  .hero {
    display: block;
    min-height: auto;
    padding: 0 0 36px;
  }

  .hero-bg {
    position: relative;
    inset: auto;
    height: 46vh;
    min-height: 260px;
    max-height: 380px;
  }

  .hero-bg::after {
    background: linear-gradient(180deg, rgba(9, 22, 23, 0) 58%, rgba(9, 22, 23, 0.96) 100%);
  }

  .hero::before {
    display: none;
  }

  .hero-content {
    background: var(--ink);
    padding-top: 30px;
  }

  .hero-content::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cg fill='none' stroke='%23D9B273' stroke-width='1'%3E%3Cpath d='M42 2 L82 42 L42 82 L2 42 Z'/%3E%3Ccircle cx='42' cy='42' r='20'/%3E%3Cpath d='M42 22 L62 42 L42 62 L22 42 Z'/%3E%3C/g%3E%3C/svg%3E");
  }

  .hero-grid {
    position: relative;
    z-index: 1;
    padding-bottom: 1.5rem;
  }

  .hero-quick-stats {
    display: none;
  }

  .hero-cta-row {
    display: flex;
  }

  .hero-form-card {
    max-width: none;
    margin-top: 28px;
  }
}

/* ---------- About Project ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 40px;
  align-items: center;
}

.about-visual {
  position: relative;
  max-width: 380px;
}

.about-visual .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3/4;
  border: 6px solid var(--marble);
  outline: 1px solid var(--line);
}

.about-visual .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-grid > div > p {
  font-size: clamp(13.5px, 0.25vw + 12.5px, 15.5px) !important;
  text-align: justify;
  text-align-last: left;
}

.usp-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-top: 24px;
}

.usp-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.usp-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--sand);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.usp-item:hover .usp-icon {
  background: var(--red);
  color: var(--marble);
  transform: rotate(-6deg) scale(1.06);
}

.usp-item h4 {
  font-size: clamp(16px, 0.25vw + 14.5px, 18px);
  margin-bottom: 4px;
}

.usp-item p {
  font-size: clamp(14px, 0.2vw + 13px, 15.5px);
  color: var(--muted);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .usp-list {
    grid-template-columns: 1fr;
  }
}

/* ---------- Dark band section ---------- */
.band-dark {
  background: var(--ink);
  color: var(--marble);
}

.band-dark .section-head h2,
.band-dark .section-head p {
  color: var(--marble);
}

.band-dark .section-head p {
  color: rgba(251, 248, 242, 0.75);
}

/* ---------- Price section (simplified, no bullet lists) ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  background: var(--marble);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px 22px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.price-card.featured {
  border-color: var(--red);
  background: linear-gradient(180deg, var(--sand) 0%, var(--marble) 55%);
  position: relative;
  overflow: hidden;
  transform: scale(1.03);
}

.price-card.featured::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent 40%, rgba(179, 33, 49, 0.18) 50%, transparent 60%);
  background-size: 250% 250%;
  animation: cardSheen 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cardSheen {
  0% { background-position: 200% 200%; }
  100% { background-position: -20% -20%; }
}

.price-card.featured .price-card-tag {
  background: var(--red);
  color: var(--marble);
}

.price-card-tag {
  display: inline-block;
  font-size: clamp(12px, 0.15vw + 11px, 13.5px);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brick);
  font-weight: 700;
  background: var(--sand-deep);
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.price-card h3 {
  font-size: clamp(18px, 0.35vw + 16px, 22px);
  margin-bottom: 5px;
}

.price-card-area {
  display: block;
  font-size: clamp(13.5px, 0.2vw + 12.5px, 15px);
  color: var(--muted);
}

.price-card-price {
  font-family: var(--font-display);
  font-size: clamp(24px, 0.8vw + 20px, 27px);
  font-weight: 800;
  color: var(--ink);
  margin: 16px 0 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.price-card-price small {
  font-family: var(--font-body);
  font-size: clamp(12px, 0.15vw + 11px, 13.5px);
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: 4px;
}

.price-note {
  margin-top: 22px;
  font-size: clamp(13px, 0.15vw + 12px, 14.5px);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Floor Plans ---------- */
.floor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.floor-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 5/5;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.floor-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(3px) brightness(0.78) saturate(1.05);
  transform: scale(1.12);
  transition: filter 0.4s ease, transform 0.5s ease;
}

.floor-card:hover .floor-card-bg {
  filter: blur(1px) brightness(0.65) saturate(1.1);
  transform: scale(1.18);
}

.floor-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(199, 201, 201, 0.15) 0%, rgba(197, 197, 197, 0.55) 60%, rgba(114, 115, 116, 0.88) 100%);
}

.floor-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--marble);
  background: rgba(179, 33, 49, 0.85);
  padding: 5px 12px;
  border-radius: 100px;
}

.floor-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px;
  color: var(--marble);
}

.floor-card-content h3 {
  color: var(--marble);
  font-size: clamp(20px, 0.4vw + 17px, 24px);
  margin-bottom: 4px;
}

.floor-card-content span {
  display: block;
  font-size: 13px;
  color: rgba(251, 248, 242, 0.78);
  margin-bottom: 14px;
}

.floor-card-content .btn {
  padding: 9px 18px;
  font-size: 13px;
  background:#2e241c !important;
}

@media (max-width: 900px) {
  .floor-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ---------- Amenities (8 items, icon + label only) ---------- */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(251, 248, 242, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.amenity-cell {
  background: var(--ink);
  padding: 30px 16px;
  text-align: center;
  transition: background 0.3s ease;
}

.amenity-cell:hover {
  background: #5d4838;
}

.amenity-cell i {
  font-size: 24px;
  color: var(--brass-light);
  margin-bottom: 12px;
  display: block;
}

.amenity-cell h4 {
  color: var(--marble);
  font-size: clamp(14.5px, 0.2vw + 13.5px, 16px);
  font-weight: 600;
}

.amenity-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

@media (max-width: 900px) {
  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Project Highlights — image + premium list, no cards ---------- */
.highlight-grid-wrap {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 40px;
  align-items: center;
}

.highlight-visual {
  max-width: 380px;
}

.highlight-visual .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3/4;
  border: 6px solid var(--marble);
  outline: 1px solid var(--line);
}

.highlight-visual .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-list {
  display: flex;
  flex-direction: column;
}

.highlight-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0 14px 14px;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s ease;
}

.highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height 0.3s ease;
}

.highlight-list li:hover {
  padding-left: 20px;
}

.highlight-list li:hover::before {
  height: 60%;
}

.highlight-list li:first-child {
  padding-top: 0;
}

.highlight-list li i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.highlight-list li:hover i {
  background: var(--red);
  color: var(--marble);
  transform: scale(1.08);
}

.highlight-list li strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(19px, 0.35vw + 16.5px, 22px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.highlight-list li span {
  display: block;
  font-size: clamp(14px, 0.2vw + 13px, 15.5px);
  color: var(--muted);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .highlight-grid-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .highlight-visual .frame {
    aspect-ratio: 16/9;
  }
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 10px;
}

@media (min-width: 1600px) {
  .gallery-grid {
    grid-auto-rows: 190px;
  }
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(18, 41, 43, 0.55));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-cap {
  position: absolute;
  left: 12px;
  bottom: 10px;
  color: var(--marble);
  font-size: clamp(13.5px, 0.15vw + 12.5px, 15px);
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
  z-index: 1;
}

.gallery-item:hover .gallery-cap {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }
}

/* ---------- Location ---------- */
.location-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.location-map {
  position: relative;
  min-height: 340px;
  background: var(--paper);
}

.location-map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  inset: 0;
}

.location-info {
  background: var(--ink);
  color: var(--marble);
  padding: 38px;
}

.location-info h3 {
  color: var(--marble);
  font-size: clamp(24px, 0.5vw + 20px, 29px);
  margin-bottom: 12px;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.location-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.location-list i {
  color: var(--brass-light);
  margin-top: 3px;
  font-size: 14px;
}

.location-list strong {
  display: block;
  font-size: clamp(14.5px, 0.2vw + 13.5px, 16px);
}

.location-list span {
  font-size: clamp(13px, 0.15vw + 12px, 14.5px);
  color: rgba(251, 248, 242, 0.7);
}

@media (max-width: 900px) {
  .location-wrap {
    grid-template-columns: 1fr;
  }

  .location-info {
    padding: 30px 24px;
  }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(120deg, var(--red-deep), var(--red) 55%, var(--brass) 135%);
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--marble);
}

.cta-banner h3 {
  color: var(--marble);
  font-size: clamp(21px, 0.9vw + 17px, 32px);
  max-width: 520px;
}

.cta-banner p {
  color: rgba(251, 248, 242, 0.88);
  margin-top: 6px;
  font-size: clamp(14.5px, 0.2vw + 13.5px, 16px);
}

.cta-banner .btn-brass {
  background: var(--marble);
  color: var(--red-deep);
  box-shadow: none;
}

.cta-banner .btn-brass:hover {
  background: var(--ink);
  color: var(--marble);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(251, 248, 242, 0.78);
  padding-top: 50px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  padding-bottom: 34px;
  align-items: start;
}

.footer-about-title {
  color: var(--marble);
  font-size: clamp(21px, 0.35vw + 18.5px, 24px);
  margin-bottom: 14px;
}

.footer-about-text {
  font-size: clamp(13.5px, 0.15vw + 12.5px, 15px);
  line-height: 1.8;
  color: rgba(251, 248, 242, 0.75);
  max-width: 560px;
  text-align: justify;
  text-align-last: left;
}

.footer-call {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.footer-call-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--marble);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.footer-call strong {
  display: block;
  color: var(--brass-light);
  font-size: clamp(14px, 0.15vw + 13px, 15.5px);
}

.footer-call span {
  display: block;
  font-size: clamp(19px, 0.3vw + 17px, 22px);
  color: var(--marble);
  font-family: var(--font-display);
  font-weight: 800;
  margin-top: 2px;
}

.footer-visit-card {
  background: var(--marble);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.footer-visit-top {
  background: var(--red-deep);
  color: var(--marble);
  text-align: center;
  padding: 13px;
  font-size: clamp(15.5px, 0.2vw + 14.5px, 17px);
  font-weight: 700;
  font-family: var(--font-display);
}

.footer-visit-body {
  padding: 20px;
}

.footer-visit-body .form-field {
  margin-bottom: 11px;
}

.footer-visit-body input,
.footer-visit-body select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: clamp(14.5px, 0.2vw + 13.5px, 16px);
  background: var(--sand);
}

.footer-visit-body input:focus,
.footer-visit-body select:focus {
  border-color: var(--brass);
  outline: none;
}

.footer-visit-status {
  margin-top: 10px;
  font-size: clamp(13px, 0.15vw + 12px, 14.5px);
  color: var(--brick);
  text-align: center;
  min-height: 14px;
}

.footer-rera-line {
  text-align: center;
  font-size: clamp(13.5px, 0.15vw + 12.5px, 15px);
  color: rgba(251, 248, 242, 0.78);
  padding: 16px 0;
  border-top: 1px solid rgba(251, 248, 242, 0.1);
}

.footer-rera-line strong {
  color: var(--brass-light);
  font-weight: 700;
}

.footer-disclaimer {
  font-size: clamp(12.5px, 0.15vw + 11.5px, 14px);
  line-height: 1.75;
  color: rgba(251, 248, 242, 0.55);
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 8px 0 22px;
}

.footer-disclaimer strong {
  color: rgba(251, 248, 242, 0.78);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 0;
  font-size: clamp(13.5px, 0.15vw + 12.5px, 15px);
  border-top: 1px solid rgba(251, 248, 242, 0.1);
  flex-wrap: wrap;
  gap: 6px;
}

.footer-bottom a {
  color: var(--brass-light);
}

.footer-bottom .sep {
  opacity: 0.4;
  margin: 0 4px;
}

@media (max-width: 900px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .footer-visit-card {
    max-width: 420px;
  }
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

#scrollTopBtn {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brass-light);
  border: 1px solid rgba(251, 248, 242, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 400;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 767px) {
  #scrollTopBtn {
    bottom: 84px;
  }
}

/* ---------- Enquiry Modal (image + 3-field lead form) ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 41, 43, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--marble);
  border-radius: var(--radius-md);
  border: 1px solid rgba(217, 178, 115, 0.3);
  max-width: 660px;
  width: 100%;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  overflow: hidden;
  max-height: 86vh;
  transform: scale(0.94);
  transition: transform 0.35s ease;
}

@media (min-width: 1600px) {
  .modal-box {
    max-width: 740px;
  }
}

.modal-overlay.open .modal-box {
  transform: scale(1);
}

.modal-visual {
  position: relative;
  min-height: 100%;
}

.modal-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.modal-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(9, 22, 23, 0.9) 10%, rgba(9, 22, 23, 0.15) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: var(--marble);
}

.modal-visual-eyebrow {
  font-size: clamp(12px, 0.15vw + 11px, 13.5px);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--brass-light);
  font-weight: 700;
}

.modal-visual-overlay h4 {
  color: var(--marble);
  font-size: clamp(22px, 0.4vw + 19px, 26px);
  margin: 8px 0 6px;
}

.modal-visual-price {
  font-family: var(--font-display);
  font-size: clamp(18px, 0.25vw + 16px, 21px);
  font-weight: 700;
  color: var(--brass-light);
}

.modal-form {
  padding: 24px 26px;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(251, 248, 242, 0.9);
  border: none;
  z-index: 5;
}

.modal-form h3 {
  font-size: clamp(19px, 0.3vw + 17px, 22px);
  margin-bottom: 5px;
}

.modal-form>p {
  color: var(--muted);
  font-size: clamp(12.5px, 0.15vw + 11.5px, 14px);
  margin-bottom: 16px;
  text-align: justify;
  text-align-last: left;
}

.modal-form .btn {
  padding: 11px 20px;
  font-size: clamp(13px, 0.2vw + 12px, 14.5px);
}

.form-field {
  margin-bottom: 12px;
}

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.optional-tag {
  font-weight: 400;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: clamp(13px, 0.15vw + 12px, 14.5px);
  background: var(--sand);
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brass);
  outline: none;
}

.form-status {
  margin-top: 12px;
  font-size: clamp(13.5px, 0.15vw + 12.5px, 15px);
  color: var(--brick);
  min-height: 16px;
}

.form-fine-print {
  font-size: clamp(12.5px, 0.15vw + 11.5px, 14px);
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 767px) {
  .modal-box {
    grid-template-columns: 1fr;
  }

  .modal-visual {
    display: none;
  }
}

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-sticky-bar {
  display: none;
}

@media (max-width: 767px) {
  .mobile-sticky-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 600;
    background: var(--ink);
    border-top: 1px solid rgba(251, 248, 242, 0.12);
    box-shadow: 0 -10px 30px -14px rgba(0, 0, 0, 0.5);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .sticky-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 4px 9px;
    background: none;
    border: none;
    color: var(--marble);
    font-size: 11.5px;
    font-weight: 700;
    border-right: 1px solid rgba(251, 248, 242, 0.1);
  }

  .sticky-item:last-child {
    border-right: none;
  }

  .sticky-item i {
    font-size: 18px;
    color: var(--brass-light);
  }

  .sticky-item--whatsapp i {
    color: #3ec95f;
  }

  .sticky-item--enquire {
    background: var(--red);
  }

  .sticky-item--enquire i {
    color: var(--marble);
  }
}

/* ---------- Fade-up reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Utility ---------- */
.text-center {
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   INDO-JAPANESE FLAVOUR — decorative motifs (bird / tree / bloosm)
   ══════════════════════════════════════════════════════════════ */

.motif {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
  user-select: none;
}

.motif-tree {
  width: clamp(160px, 23vw, 290px);
}

.motif-bird {
  width: clamp(70px, 15vw, 180px);
  animation: motifFloat 6s ease-in-out infinite;
}

.motif-bloosm {
  width: clamp(90px, 17vw, 220px);
  opacity: 0.85;
}

@keyframes motifFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}

/* Hero motifs */
.hero .motif-tree {
  right: -20px;
  bottom: -10px;
  filter: brightness(0) invert(1) opacity(0.14);
}

.myprice .motif-bird {
  right: 1%;
  top: 10%;

}

@media (max-width: 767px) {
  .hero .motif-tree,
  .hero .motif-bird {
    display: none;
  }
}

/* About section motifs */
.about-section {
  overflow: hidden;
}

.about-section .motif-bloosm {
  top: -25px;
  right: 0%;
}

@media (max-width: 900px) {
  .about-section .motif-bloosm {
    display: none;
  }

    .about-visual .frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: auto;
    height: 309px;
    width: 100%;
}
  .about-visual .frame img{
        width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .floor-card{
        aspect-ratio: auto;
    height: 220px;
  }
}
@media (max-width: 767px) {
  .form-field input,
  .form-field select,
  .hero-form-body input,
  .hero-form-body select,
  .footer-visit-body input,
  .footer-visit-body select,
  .phone-row--prefix input,
  .phone-prefix {
    font-size: 16px !important;
  }
}

