@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --terracotta: #974d3e;
  --terracotta-dark: #854638;
  --terracotta-soft: #cf927f;
  --terracotta-ink: #6b372d;
  --sage: #7f8d74;
  --sage-dark: #62705a;
  --slate: #788990;
  --cream: #f5eee5;
  --cream-2: #ede2d5;
  --paper: #fffaf4;
  --ink: #2f2824;
  --muted: #776c63;
  --line: rgba(47, 40, 36, .11);
  --shadow: 0 22px 70px rgba(91, 56, 45, .12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background-color: var(--cream);
  background-image: url('/assets/brand/paper-texture.webp');
  background-repeat: repeat;
  background-size: 640px 640px;
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 92px 0; position: relative; }
.section-sm { padding: 60px 0; }
.kicker { display: none !important; }
h1,h2,h3,h4,p { margin-top: 0; }
h1,h2 { font-family: "Cormorant Garamond", Georgia, serif; letter-spacing: -.035em; font-weight: 600; }
h3 { letter-spacing: -.02em; }
h1 { font-size: clamp(42px, 5.5vw, 72px); line-height: .98; }
h2 { font-size: clamp(34px, 4.2vw, 54px); line-height: 1.04; }
h3 { font-size: 26px; line-height: 1.15; }
.lead { font-size: clamp(18px, 2vw, 22px); color: var(--muted); max-width: 720px; }
.muted { color: var(--muted); }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(245,238,229,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(47,40,36,.08);
}
.navbar { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 172px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
.nav-links a { position: relative; }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1.5px; background: var(--terracotta); transition: right .25s ease; }
.nav-links a:not(.btn):hover::after, .nav-links a.active::after { right: 0; }
.menu-btn { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--paper); color: var(--ink); }
.mobile-menu { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 20px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 700; font-size: 14px; transition: all .25s ease;
  cursor: pointer;
}
.btn svg, .whatsapp-float svg, .wa-icon { width: 18px; height: 18px; flex: 0 0 18px; }
.btn-primary { background: var(--terracotta); color: #fff; box-shadow: 0 10px 30px rgba(151,77,62,.22); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); }
.btn-secondary { background: rgba(255,255,255,.78); border-color: var(--line); }
.btn-secondary:hover { background: #fff; }
.btn-light { background: #fff; color: var(--terracotta-dark); }
.btn-ghost { border-color: rgba(255,255,255,.34); color: #fff; }
.btn-whatsapp { gap: 10px; }
.arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.hero { padding: 28px 0 104px; overflow: visible; }
.hero-shell {
  position: relative;
  min-height: 660px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(47,40,36,.08);
  background-image:
    linear-gradient(90deg, rgba(38,29,25,.66) 0%, rgba(38,29,25,.52) 34%, rgba(38,29,25,.20) 64%, rgba(38,29,25,.04) 100%),
    url('/assets/images/hero-living-room.webp');
  background-size: cover;
  background-position: center center;
}
.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .10;
  mix-blend-mode: soft-light;
  background-image: url('/assets/brand/paper-texture.webp');
  background-size: 640px 640px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 660px;
  width: min(650px, 58%);
  padding: 78px 58px 104px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy h1 {
  margin-bottom: 22px;
  max-width: 11ch;
  font-family: Gotham, Montserrat, system-ui, sans-serif;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -.045em;
  text-shadow: 0 3px 28px rgba(0,0,0,.14);
}
.hero-subline {
  max-width: 570px;
  margin-bottom: 26px;
  color: rgba(255,255,255,.90);
  font-size: 16px;
  line-height: 1.7;
}
.price-line { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.price-line span { color: rgba(255,255,255,.84); }
.price-line strong { font-size: 31px; color: #fff; font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  background: #974d3e;
  color: #fff;
  border: 1px solid rgba(255,255,255,.24);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(38,20,16,.20);
  transition: all .25s ease;
}
.btn-hero-whatsapp:hover { background: #7e3f33; transform: translateY(-1px); }
.hero-visual, .hero-photo-main, .hero-card, .hero-organic, .hero-meta, .hero-tagline, .stats-row { display: none !important; }

.search-panel { margin-top: -54px; position: relative; z-index: 6; }
.search-box {
  background: var(--paper); border: 1px solid rgba(47,40,36,.08); box-shadow: var(--shadow);
  border-radius: 28px; padding: 18px; display: grid; grid-template-columns: 1.25fr 1fr 1fr auto; gap: 10px;
}
.field { display: flex; flex-direction: column; gap: 6px; padding: 6px 14px; border-right: 1px solid var(--line); }
.field:last-of-type { border-right: 0; }
.field label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.field select { border: 0; background: transparent; outline: none; color: var(--ink); font-weight: 600; min-height: 30px; }

.stats-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: auto; padding-top: 14px; }
.stat { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16); border-radius: 18px; padding: 18px; backdrop-filter: blur(8px); }
.stat strong { display: block; font-size: 20px; color: #fff; }
.stat span { font-size: 13px; color: rgba(255,255,255,.78); }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-head h2 { max-width: 760px; margin-bottom: 0; }
.section-head p { max-width: 430px; margin-bottom: 0; }

.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-card {
  border-radius: var(--radius-lg); padding: 28px; background: rgba(255,250,244,.68); border: 1px solid var(--line); min-height: 210px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.feature-card:hover { transform: translateY(-4px); background: var(--paper); box-shadow: 0 18px 48px rgba(91,56,45,.08); }
.icon-box { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: rgba(165,90,72,.1); color: var(--terracotta); margin-bottom: 24px; font-weight: 700; }
.feature-card h3 { font-size: 20px; margin-bottom: 8px; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.rooms-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.room-card { border-radius: var(--radius-xl); overflow: hidden; position: relative; min-height: 520px; background: #ddd; box-shadow: var(--shadow); }
.room-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.room-card::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(35,27,24,.72) 0%, rgba(35,27,24,.12) 52%, transparent 74%); }
.room-content { position: absolute; z-index:2; left: 30px; right: 30px; bottom: 28px; color: #fff; }
.room-content .room-tag { display:inline-flex; padding:7px 11px; border:1px solid rgba(255,255,255,.38); border-radius:999px; font-size:11px; text-transform:uppercase; letter-spacing:.12em; margin-bottom:10px; backdrop-filter: blur(8px); }
.room-content h3 { font-size: 34px; margin-bottom: 8px; }
.room-content p { margin-bottom: 20px; color: rgba(255,255,255,.84); max-width: 500px; }
.room-details { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:18px; }
.room-details span { font-size:12px; padding:7px 10px; border-radius:999px; background:rgba(255,255,255,.13); backdrop-filter: blur(8px); }

.amenities-wrap { display:grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items:center; }
.amenities-copy { background:
  linear-gradient(rgba(107,55,45,.20), rgba(107,55,45,.20)),
  url('/assets/brand/terracotta-background.webp') center/cover no-repeat;
 color:#fff; border-radius: var(--radius-xl); padding: 50px; min-height: 550px; display:flex; flex-direction:column; justify-content:center; position:relative; overflow:hidden; }
.amenities-copy::before { content:""; position:absolute; width:380px; height:380px; border-radius:47% 53% 41% 59%/60% 39% 61% 40%; background:rgba(255,255,255,.07); right:-150px; bottom:-170px; }
.amenities-copy h2 { margin-bottom:18px; }
.amenities-copy p { color:rgba(255,255,255,.84); }
.amenity-list { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin-top:28px; }
.amenity { border-top:1px solid rgba(255,255,255,.22); padding:13px 0; font-size:14px; }
.amenities-images { display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
.amenities-images figure { margin:0; border-radius: var(--radius-lg); overflow:hidden; height:255px; }
.amenities-images figure:first-child { grid-row: span 2; height:524px; }
.amenities-images img { height:100%; object-fit:cover; }

.location-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.location-card { padding: 34px; border-radius: var(--radius-xl); background: var(--paper); border:1px solid var(--line); position:relative; overflow:hidden; }
.location-card::after { content:""; position:absolute; width:200px; height:200px; right:-75px; top:-80px; border-radius:50%; background:rgba(127,141,116,.13); }
.location-number { font-size: 72px; line-height:1; font-weight:700; color:rgba(165,90,72,.13); letter-spacing:-.06em; margin-bottom:32px; }
.location-card h3 { font-size:28px; margin-bottom:8px; }
.location-card p { color:var(--muted); max-width:520px; }
.location-meta { display:flex; gap:10px; flex-wrap:wrap; margin:20px 0 26px; }
.location-meta span { font-size:12px; background:var(--cream); padding:8px 11px; border-radius:999px; }

.gallery-grid { display:grid; grid-template-columns:1.25fr .75fr .75fr; grid-auto-rows:220px; gap:14px; }
.gallery-item { border:0; padding:0; overflow:hidden; border-radius:22px; cursor:pointer; background:#ddd; position:relative; }
.gallery-item:first-child { grid-row:span 2; }
.gallery-item:nth-child(4) { grid-column:span 2; }
.gallery-item img { height:100%; object-fit:cover; transition:transform .45s ease; }
.gallery-item:hover img { transform:scale(1.03); }
.gallery-item::after { content:"Lihat"; position:absolute; right:12px; bottom:12px; background:rgba(255,250,244,.9); color:var(--ink); font-size:11px; font-weight:700; padding:8px 10px; border-radius:999px; opacity:0; transform:translateY(5px); transition:.2s ease; }
.gallery-item:hover::after { opacity:1; transform:none; }

.steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; background:var(--paper); border-radius:var(--radius-xl); border:1px solid var(--line); overflow:hidden; }
.step { padding:30px; border-right:1px solid var(--line); }
.step:last-child { border-right:0; }
.step-num { width:36px; height:36px; border-radius:50%; background:var(--terracotta); color:#fff; display:grid; place-items:center; font-size:13px; font-weight:700; margin-bottom:50px; }
.step h3 { font-size:18px; margin-bottom:8px; }
.step p { font-size:13px; color:var(--muted); margin:0; }

.price-banner { background: linear-gradient(rgba(107,55,45,.20), rgba(107,55,45,.20)), url('/assets/brand/terracotta-background.webp') center/cover no-repeat; color:#fff; border-radius: var(--radius-xl); padding: 58px; display:grid; grid-template-columns:1fr auto; gap:40px; align-items:center; position:relative; overflow:hidden; }
.price-banner::before { content:""; position:absolute; inset:-90px auto auto -80px; width:300px; height:300px; background:rgba(255,255,255,.08); border-radius:48% 52% 60% 40%; transform:rotate(-17deg); }
.price-banner h2 { margin-bottom:10px; }
.price-banner p { margin:0; color:rgba(255,255,255,.82); max-width:720px; }
.price-figure { text-align:right; white-space:nowrap; position:relative; z-index:2; }
.price-figure small { display:block; text-transform:uppercase; letter-spacing:.12em; font-weight:700; opacity:.7; font-size:10px; }
.price-figure strong { font-size:36px; }

.faq { max-width:920px; margin:0 auto; }
.faq-item { border-bottom:1px solid var(--line); }
.faq-q { width:100%; border:0; background:transparent; display:flex; justify-content:space-between; align-items:center; gap:20px; padding:24px 0; text-align:left; font-weight:700; color:var(--ink); cursor:pointer; }
.faq-q span:last-child { font-size:24px; font-weight:400; transition: transform .2s ease; }
.faq-item.open .faq-q span:last-child { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .3s ease; color:var(--muted); }
.faq-a p { padding:0 0 24px; margin:0; max-width:760px; }

.cta-card { min-height:420px; border-radius:var(--radius-xl); overflow:hidden; position:relative; display:grid; place-items:center; text-align:center; padding:50px; color:#fff; }
.cta-card img { position:absolute; inset:0; height:100%; object-fit:cover; }
.cta-card::after { content:""; position:absolute; inset:0; background:linear-gradient(135deg, rgba(89,43,34,.9), rgba(89,43,34,.58)); }
.cta-content { position:relative; z-index:2; max-width:760px; }
.cta-content h2 { margin-bottom:16px; }
.cta-content p { color:rgba(255,255,255,.82); margin:0 auto 24px; max-width:620px; }
.cta-actions { display:flex; justify-content:center; flex-wrap:wrap; gap:12px; }

.site-footer { background:#2f2824; color:#fff; padding:70px 0 26px; margin-top:90px; }
.footer-grid { display:grid; grid-template-columns:1.4fr .7fr .7fr 1fr; gap:44px; }
.footer-brand img { width:170px; margin-bottom:22px; }
.footer-brand p { color:rgba(255,255,255,.64); max-width:360px; }
.footer-col h4 { font-size:12px; letter-spacing:.14em; text-transform:uppercase; margin-bottom:18px; color:rgba(255,255,255,.48); }
.footer-col a { display:block; margin:10px 0; color:rgba(255,255,255,.83); font-size:14px; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; border-top:1px solid rgba(255,255,255,.1); padding-top:22px; margin-top:50px; color:rgba(255,255,255,.45); font-size:12px; }

/* Inner pages */
.page-hero { padding:70px 0 40px; }
.page-hero .lead { margin-bottom:0; }
.breadcrumb { font-size:12px; color:var(--muted); margin-bottom:28px; }
.breadcrumb a { color:var(--terracotta); }
.property-overview { display:grid; grid-template-columns:1.05fr .95fr; gap:26px; align-items:stretch; }
.property-overview .main-image { border-radius:var(--radius-xl); overflow:hidden; min-height:620px; }
.property-overview .main-image img { height:100%; object-fit:cover; }
.property-side { display:grid; gap:18px; }
.info-panel { background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg); padding:30px; }
.info-panel .price { font-size:32px; color:var(--terracotta); font-weight:700; }
.info-chips { display:flex; flex-wrap:wrap; gap:8px; margin:18px 0 24px; }
.info-chips span { background:var(--cream); border-radius:999px; padding:8px 11px; font-size:12px; }
.mini-gallery { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.mini-gallery img { height:200px; object-fit:cover; border-radius:18px; }
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:38px; }
.content-card { background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-lg); padding:34px; }
.check-list { list-style:none; margin:20px 0 0; padding:0; display:grid; gap:12px; }
.check-list li { position:relative; padding-left:30px; }
.check-list li::before { content:"✓"; position:absolute; left:0; top:0; color:var(--terracotta); font-weight:800; }
.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:26px; }
.contact-card { background:
  linear-gradient(rgba(107,55,45,.20), rgba(107,55,45,.20)),
  url('/assets/brand/terracotta-background.webp') center/cover no-repeat;
 color:#fff; border-radius:var(--radius-xl); padding:42px; }
.contact-card a { display:block; margin:12px 0; }
.contact-form { background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-xl); padding:38px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group { display:flex; flex-direction:column; gap:7px; }
.form-group.full { grid-column:1/-1; }
.form-group label { font-size:12px; font-weight:700; color:var(--muted); }
.form-group input, .form-group select, .form-group textarea { width:100%; border:1px solid var(--line); border-radius:14px; background:#fff; padding:14px 15px; outline:none; }
.form-group textarea { min-height:130px; resize:vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--terracotta-soft); box-shadow:0 0 0 3px rgba(165,90,72,.08); }

.lightbox { position:fixed; inset:0; z-index:100; display:none; align-items:center; justify-content:center; background:rgba(21,18,16,.9); padding:24px; }
.lightbox.open { display:flex; }
.lightbox img { width:min(900px,92vw); max-height:88vh; object-fit:contain; border-radius:18px; }
.lightbox-close { position:absolute; top:22px; right:24px; border:0; background:#fff; width:44px; height:44px; border-radius:50%; cursor:pointer; font-size:24px; }

.whatsapp-float {
  position:fixed; right:20px; bottom:20px; z-index:30; min-width:58px; height:58px; border-radius:999px; background:var(--terracotta); color:#fff; display:flex; align-items:center; justify-content:center; gap:10px; padding:0 18px; box-shadow:0 16px 40px rgba(93,45,37,.28); font-size:13px; font-weight:800;
}
.whatsapp-float strong { display:none; }
.whatsapp-float:hover { background: var(--terracotta-dark); }

@media (max-width: 980px) {
  .nav-links { display:none; }
  .menu-btn { display:grid; place-items:center; }
  .mobile-menu { position:fixed; top:84px; left:0; right:0; z-index:39; background:var(--cream); padding:24px 20px 32px; border-bottom:1px solid var(--line); transform:translateY(-130%); transition:.3s ease; display:block; }
  .mobile-menu.open { transform:none; }
  .mobile-menu a { display:block; padding:13px 0; font-weight:700; }
  .hero-shell { min-height: 620px; background-position: 58% center; }
  .hero-copy { min-height: 620px; width: 70%; padding: 58px 38px 92px; }
  .hero-copy h1 { max-width: 11ch; }
  .search-panel { margin-top: -30px; }
  .search-box { grid-template-columns:1fr 1fr; }
  .search-box .btn { min-height:58px; }
  .field:nth-child(2) { border-right:0; }
  .features { grid-template-columns:1fr 1fr; }
  .amenities-wrap { grid-template-columns:1fr; }
  .amenities-copy { min-height:auto; }
  .steps { grid-template-columns:1fr 1fr; }
  .step:nth-child(2) { border-right:0; }
  .step:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .price-banner { grid-template-columns:1fr; }
  .price-figure { text-align:left; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .property-overview { grid-template-columns:1fr; }
  .property-overview .main-image { min-height:520px; }
  .contact-grid { grid-template-columns:1fr; }
  .location-grid { grid-template-columns:1fr; }
}

@media (max-width: 680px) {
  .container { width:min(calc(100% - 28px), var(--max)); }
  .section { padding:70px 0; }
  .navbar { height:74px; }
  .brand img { width:150px; }
  .mobile-menu { top:74px; }
  .hero { padding-top:16px; padding-bottom:72px; }
  .hero-shell { min-height: 570px; border-radius: 28px; background-position: 62% center; }
  .hero-shell::before { content: ""; position:absolute; inset:0; z-index:1; background: linear-gradient(90deg, rgba(38,29,25,.72), rgba(38,29,25,.45) 62%, rgba(38,29,25,.14)); }
  .hero-copy { min-height: 570px; width:100%; padding:38px 24px 82px; }
  .hero-copy h1 { font-size: clamp(34px, 10.5vw, 47px); max-width: 10ch; }
  .hero-subline { font-size:14px; max-width: 95%; }
  .search-panel { margin-top:0; padding-top:18px; }
  .search-box { grid-template-columns:1fr; border-radius:20px; }
  .field { border-right:0; border-bottom:1px solid var(--line); padding:8px 10px; }
  .stats-row { grid-template-columns:1fr 1fr; }
  .section-head { display:block; }
  .section-head h2 { margin-bottom:14px; }
  .features { grid-template-columns:1fr; }
  .rooms-grid { grid-template-columns:1fr; }
  .room-card { min-height:480px; }
  .amenities-copy { padding:34px 26px; }
  .amenity-list { grid-template-columns:1fr; }
  .amenities-images { grid-template-columns:1fr 1fr; }
  .amenities-images figure, .amenities-images figure:first-child { height:240px; grid-row:auto; }
  .amenities-images figure:first-child { grid-column:1/-1; height:350px; }
  .gallery-grid { grid-template-columns:1fr 1fr; grid-auto-rows:170px; }
  .gallery-item:first-child { grid-row:span 2; }
  .gallery-item:nth-child(4) { grid-column:span 1; }
  .steps { grid-template-columns:1fr; }
  .step { border-right:0; border-bottom:1px solid var(--line); }
  .step:last-child { border-bottom:0; }
  .step-num { margin-bottom:28px; }
  .price-banner { padding:38px 28px; }
  .price-figure strong { font-size:30px; }
  .cta-card { min-height:450px; padding:34px 22px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { display:block; }
  .footer-bottom span { display:block; margin:5px 0; }
  .property-overview .main-image { min-height:460px; }
  .two-col { grid-template-columns:1fr; }
  .form-grid { grid-template-columns:1fr; }
  .form-group.full { grid-column:auto; }
  .whatsapp-float span { display:none; }
  .whatsapp-float { width:58px; padding:0; }
}


/* Homepage photo slider */
.gallery-slider { position:relative; }
.gallery-controls { display:flex; justify-content:flex-end; gap:10px; margin-bottom:16px; }
.gallery-arrow {
  width:46px; height:46px; border-radius:50%; border:1px solid var(--line); background:rgba(255,250,244,.86);
  color:var(--ink); display:grid; place-items:center; cursor:pointer; font-size:20px; transition:transform .2s ease, background .2s ease;
}
.gallery-arrow:hover { background:#fff; transform:translateY(-1px); }
.gallery-track {
  display:grid; grid-auto-flow:column; grid-auto-columns:minmax(320px, 38%); gap:16px; overflow-x:auto; scroll-snap-type:x mandatory;
  scrollbar-width:none; padding:2px 2px 10px; overscroll-behavior-inline:contain;
}
.gallery-track::-webkit-scrollbar { display:none; }
.gallery-slide {
  scroll-snap-align:start; border:0; padding:0; min-height:430px; overflow:hidden; border-radius:26px; cursor:pointer; background:#ddd;
  position:relative; box-shadow:0 16px 40px rgba(91,56,45,.08);
}
.gallery-slide img { width:100%; height:100%; object-fit:cover; transition:transform .45s ease; }
.gallery-slide:hover img { transform:scale(1.025); }
.gallery-slide::after {
  content:"Lihat foto"; position:absolute; right:14px; bottom:14px; background:rgba(255,250,244,.92); color:var(--ink); font-size:11px;
  font-weight:700; padding:8px 11px; border-radius:999px;
}

/* Homepage WhatsApp lead form */
.home-contact { padding-top:76px; padding-bottom:18px; }
.home-contact-shell {
  display:grid; grid-template-columns:.95fr 1.05fr; gap:54px; align-items:center; padding:58px;
  border-radius:36px; overflow:hidden; position:relative;
  background:linear-gradient(rgba(107,55,45,.30), rgba(107,55,45,.30)), url('/assets/brand/terracotta-background.webp') center/cover no-repeat;
  box-shadow:var(--shadow); color:#fff;
}
.home-contact-copy { max-width:520px; position:relative; z-index:1; }
.home-contact-eyebrow { margin:0 0 24px; text-transform:uppercase; letter-spacing:.13em; font-size:12px; font-weight:700; color:rgba(255,255,255,.75); }
.home-contact-copy h2 { margin-bottom:18px; font-size:clamp(38px,4vw,56px); }
.home-contact-copy > p:not(.home-contact-eyebrow) { color:rgba(255,255,255,.82); max-width:500px; }
.home-contact-details { display:grid; gap:12px; margin-top:34px; }
.home-contact-details a, .home-contact-details div { display:flex; flex-direction:column; gap:2px; padding:12px 0; border-top:1px solid rgba(255,255,255,.2); }
.home-contact-details span { font-size:12px; color:rgba(255,255,255,.68); }
.home-contact-details strong { font-size:16px; }
.home-contact-form {
  background:#fff8ee; color:var(--ink); border-radius:30px; padding:38px; display:grid; gap:18px;
  box-shadow:0 20px 60px rgba(64,35,29,.18);
}
.home-contact-form .form-group { gap:8px; }
.home-contact-form .form-group label, .home-audience legend { font-size:12px; font-weight:700; color:var(--muted); }
.home-contact-form input, .home-contact-form textarea {
  width:100%; border:1px solid rgba(107,55,45,.19); border-radius:14px; background:#f7edda; padding:14px 16px; outline:none; color:var(--ink);
}
.home-contact-form textarea { min-height:132px; resize:vertical; }
.home-contact-form input:focus, .home-contact-form textarea:focus { border-color:var(--terracotta-soft); box-shadow:0 0 0 3px rgba(151,77,62,.08); }
.home-audience { margin:0; padding:0; border:0; }
.home-audience legend { margin-bottom:10px; }
.audience-options { display:flex; flex-wrap:wrap; gap:10px; }
.audience-options label { cursor:pointer; }
.audience-options input { position:absolute; opacity:0; pointer-events:none; }
.audience-options span {
  display:inline-flex; min-height:46px; align-items:center; padding:0 16px; border:1px solid rgba(107,55,45,.20); border-radius:13px;
  background:#f7edda; font-weight:700; font-size:14px; transition:.2s ease;
}
.audience-options input:checked + span { color:#fff; background:var(--terracotta); border-color:var(--terracotta); box-shadow:0 8px 20px rgba(107,55,45,.16); }
.audience-options input:focus-visible + span { outline:2px solid var(--terracotta-soft); outline-offset:2px; }
.home-contact-submit { width:100%; background:#a55140; color:#fff; border:0; border-radius:13px; min-height:56px; }
.home-contact-submit:hover { background:var(--terracotta-dark); transform:translateY(-1px); }

@media (max-width: 980px) {
  .gallery-track { grid-auto-columns:minmax(300px, 58%); }
  .home-contact-shell { grid-template-columns:1fr; padding:44px; gap:34px; }
  .home-contact-copy { max-width:680px; }
}

@media (max-width: 680px) {
  .gallery-controls { margin-bottom:12px; }
  .gallery-track { grid-auto-columns:86%; gap:12px; }
  .gallery-slide { min-height:390px; border-radius:22px; }
  .home-contact { padding-top:54px; }
  .home-contact-shell { padding:28px 20px; border-radius:28px; gap:28px; }
  .home-contact-form { padding:24px 18px; border-radius:22px; }
  .audience-options span { min-height:44px; padding:0 13px; font-size:13px; }
}

/* =========================================================
   Sample-inspired Nvansa Living refresh — 2026-08-15
   ========================================================= */
:root {
  --terracotta: #974d3e;
  --terracotta-dark: #7f3f33;
  --sage: #8d957e;
  --sage-dark: #737d68;
  --slate: #788990;
  --paper: #fffaf4;
  --cream: #f6f1e9;
  --cream-2: #eee6db;
  --ink: #2e2925;
  --muted: #756e68;
}
.sample-v2 { background-color: var(--cream); }
.sample-v2 .eyebrow {
  margin: 0 0 10px;
  color: var(--terracotta);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.sample-v2 .eyebrow.light { color: rgba(255,255,255,.76); }
.sample-v2 h1,
.sample-v2 h2 { font-family: "Cormorant Garamond", Georgia, serif; }
.sample-v2 h3 { font-family: Montserrat, system-ui, sans-serif; }

/* Header */
.home-header {
  background: var(--terracotta);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: none;
}
.home-header .navbar { height: 78px; }
.home-header .brand img { width: 148px; }
.home-header .nav-links { color: #fff; font-size: 12px; gap: 24px; }
.home-header .nav-links a:not(.btn)::after { background: rgba(255,255,255,.75); }
.home-header .btn-header-light {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 7px;
  background: #fffaf4;
  color: var(--terracotta-dark);
  box-shadow: none;
}
.home-header .menu-btn { background: rgba(255,255,255,.14); color: #fff; }
.home-header .mobile-menu { background: var(--terracotta); color: #fff; }
.property-header { background: rgba(255,250,244,.96); }
.property-header .navbar { height: 80px; }
.property-header .brand img { width: 152px; }
.property-header .nav-links { font-size: 12px; gap: 24px; }
.property-header .nav-links .btn { min-height: 42px; border-radius: 7px; }

/* Hero */
.sample-hero { padding: 0 0 54px; }
.sample-hero .container { width: min(calc(100% - 28px), 1280px); }
.sample-hero-card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
  background-image:
    linear-gradient(90deg, rgba(36,26,22,.77) 0%, rgba(36,26,22,.66) 36%, rgba(36,26,22,.23) 64%, rgba(36,26,22,.06) 100%),
    url('/assets/images/property-01.webp');
  background-size: cover;
  background-position: center 47%;
  box-shadow: 0 22px 60px rgba(69,45,38,.12);
}
.sample-hero-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 124%;
  height: 145px;
  left: -12%;
  bottom: -86px;
  border-radius: 50% 50% 0 0 / 55% 55% 0 0;
  background: var(--cream);
  background-image: url('/assets/brand/paper-texture.webp');
  background-size: 640px 640px;
}
.sample-hero-copy {
  position: relative;
  z-index: 2;
  width: min(560px, 56%);
  min-height: 610px;
  padding: 80px 0 110px 72px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sample-hero-copy h1 {
  max-width: 10.5ch;
  margin-bottom: 18px;
  font-size: clamp(44px, 5vw, 70px);
  line-height: .98;
  letter-spacing: -.045em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.sample-hero-copy p {
  max-width: 500px;
  margin-bottom: 26px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.9);
}
.sample-hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.sample-hero-actions .btn { border-radius: 7px; min-height: 46px; padding: 0 18px; }
.sample-text-link { color: #fff; font-size: 13px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 3px; }
.hero-location-badge {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(31,24,21,.34);
  color: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 700;
}

/* Brand family */
.sample-brand-section { padding: 14px 0 66px; }
.sample-centered-head { max-width: 760px; margin: 0 auto 32px; text-align: center; }
.sample-centered-head.compact { max-width: 700px; margin-bottom: 26px; }
.sample-centered-head h2 { margin-bottom: 9px; font-size: clamp(34px,4vw,50px); }
.sample-centered-head p:last-child { margin: 0 auto; max-width: 620px; color: var(--muted); font-size: 13px; }
.brand-family-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.brand-family-card {
  position: relative;
  min-height: 270px;
  padding: 30px 28px 24px;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 13px 30px rgba(66,46,39,.08);
}
.brand-family-card::before,
.mini-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 10%, rgba(255,255,255,.08), transparent 38%);
  pointer-events: none;
}
.brand-living { background: var(--terracotta) url('/assets/brand/terracotta-texture.webp') center/cover; }
.brand-escape { background: var(--sage) url('/assets/brand/sage-texture.webp') center/cover; }
.brand-stay { background: var(--slate) url('/assets/brand/slate-texture.webp') center/cover; }
.brand-family-card img { position: relative; z-index: 1; width: min(230px,78%); height: auto; margin-bottom: 20px; }
.brand-family-card p { position: relative; z-index: 1; max-width: 270px; margin-bottom: 18px; color: rgba(255,255,255,.88); font-size: 12px; line-height: 1.6; }
.brand-family-card a { position: relative; z-index: 1; font-size: 12px; font-weight: 800; }
.brand-family-card a span { margin-left: 6px; }

/* Gallery carousel */
.sample-gallery-section { padding: 34px 0 54px; }
.sample-carousel { position: relative; padding: 0 38px 34px; }
.sample-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 3);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}
.sample-carousel-track::-webkit-scrollbar { display: none; }
.sample-slide {
  scroll-snap-align: start;
  position: relative;
  height: 260px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #ddd;
  cursor: zoom-in;
}
.sample-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.sample-slide:hover img { transform: scale(1.025); }
.carousel-arrow {
  position: absolute;
  z-index: 5;
  top: calc(50% - 28px);
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(47,40,36,.12);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(61,43,36,.12);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }
.carousel-dots { position: absolute; left: 50%; bottom: 5px; transform: translateX(-50%); display: flex; gap: 7px; }
.carousel-dot { width: 7px; height: 7px; border: 0; border-radius: 50%; padding: 0; background: rgba(47,40,36,.18); cursor: pointer; }
.carousel-dot.active { background: var(--terracotta); }
.gallery-cta { display: flex; justify-content: center; margin-top: 10px; }
.btn-sage { min-height: 44px; border-radius: 7px; background: var(--sage); color: #fff; }
.btn-sage:hover { background: var(--sage-dark); }

/* Benefit strip */
.sample-benefit-strip { padding: 0 0 64px; }
.benefit-strip-card {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,250,244,.88);
  box-shadow: 0 12px 34px rgba(75,52,44,.06);
}
.benefit-strip-card article { display: flex; align-items: center; gap: 13px; padding: 4px 18px; border-right: 1px solid var(--line); }
.benefit-strip-card article:last-child { border-right: 0; }
.benefit-icon { font-size: 26px; color: var(--terracotta); }
.benefit-strip-card strong { display: block; font-size: 12px; }
.benefit-strip-card small { display: block; color: var(--muted); font-size: 10px; margin-top: 2px; }

/* Content sections */
.sample-content-section { padding-top: 50px; }
.sample-head { align-items: end; }
.sample-head .eyebrow { margin-bottom: 8px; }
.sample-room-grid .sample-room-card { min-height: 560px; border-radius: 22px; }
.sample-room-card .room-content { left: 28px; right: 28px; bottom: 26px; }
.sample-room-card .room-content h3 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 40px; }
.sample-room-card .btn { border-radius: 7px; }
.sample-location-section { padding-top: 24px; }
.sample-split-card {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  overflow: hidden;
  border-radius: 26px;
  background: var(--terracotta) url('/assets/brand/terracotta-texture.webp') center/cover;
  box-shadow: var(--shadow);
}
.sample-split-copy { padding: 58px; color: #fff; display: flex; flex-direction: column; justify-content: center; }
.sample-split-copy h2 { color: #fff; margin-bottom: 14px; }
.sample-split-copy p:not(.eyebrow) { color: rgba(255,255,255,.84); }
.location-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.location-pills a { padding: 9px 12px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; font-size: 12px; font-weight: 700; }
.sample-split-images { min-height: 480px; display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 1fr 1fr; gap: 8px; padding: 8px; }
.sample-split-images img { width:100%; height:100%; object-fit:cover; border-radius: 15px; }
.sample-split-images .tall { grid-row: 1 / span 2; }
.sample-process-section { padding-top: 76px; }
.sample-steps { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: rgba(255,250,244,.72); }
.sample-steps article { padding: 30px 24px; border-right: 1px solid var(--line); }
.sample-steps article:last-child { border-right: 0; }
.sample-steps span { display: inline-block; margin-bottom: 16px; color: var(--terracotta); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.sample-steps h3 { margin-bottom: 8px; font-size: 17px; }
.sample-steps p { margin: 0; color: var(--muted); font-size: 12px; }
.sample-price-section { padding-top: 18px; }
.sample-price-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 42px 48px;
  border-radius: 22px;
  color: #fff;
  background: var(--sage) url('/assets/brand/sage-texture.webp') center/cover;
}
.sample-price-card h2 { margin-bottom: 8px; color: #fff; font-size: clamp(32px,4vw,46px); }
.sample-price-card p:not(.eyebrow) { max-width: 760px; margin: 0; color: rgba(255,255,255,.86); }
.sample-price-card .btn { border-radius: 7px; flex: 0 0 auto; }

/* Contact form */
.sample-contact { padding-top: 70px; padding-bottom: 88px; }
.sample-contact-shell {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  overflow: hidden;
  border-radius: 28px;
  background: var(--terracotta) url('/assets/brand/terracotta-texture.webp') center/cover;
  box-shadow: var(--shadow);
}
.sample-contact-shell .home-contact-copy { padding: 56px; color: #fff; }
.sample-contact-shell .home-contact-copy h2 { color:#fff; font-size: clamp(40px,4.5vw,58px); }
.sample-contact-shell .home-contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.78); max-width: 520px; }
.contact-detail-list { margin-top: 34px; display: grid; gap: 14px; }
.contact-detail-list > a,
.contact-detail-list > div { display: flex; align-items: center; gap: 14px; color:#fff; }
.contact-detail-list > * > span { width: 42px; height: 42px; border-radius: 12px; display:grid; place-items:center; background: rgba(255,255,255,.12); font-size:18px; }
.contact-detail-list small { display:block; color: rgba(255,255,255,.6); font-size: 10px; }
.contact-detail-list strong { display:block; font-size: 14px; }
.sample-contact-form {
  margin: 18px;
  padding: 36px;
  border-radius: 22px;
  background: #fbf5e9;
}
.sample-contact-form .form-group input,
.sample-contact-form .form-group textarea { background: #f7ecd7; border-color: rgba(100,76,63,.16); }
.audience-fieldset { border: 0; margin: 0 0 18px; padding: 0; }
.audience-fieldset legend { margin-bottom: 10px; font-size: 12px; font-weight: 700; color: var(--muted); }
.audience-fieldset label { display: inline-flex; margin: 0 8px 8px 0; cursor:pointer; }
.audience-fieldset input { position:absolute; opacity:0; }
.audience-fieldset span { display:inline-flex; align-items:center; min-height:40px; padding:0 13px; border:1px solid rgba(100,76,63,.18); border-radius:10px; background:#f7ecd7; font-size:12px; font-weight:700; }
.audience-fieldset input:checked + span { background: var(--terracotta); color:#fff; border-color: var(--terracotta); }
.sample-form-submit { width:100%; border-radius:10px; }

/* Footer */
.sample-footer { background: #56362f; }
.sample-footer .footer-brand img { width: 156px; }

/* Property page */
.property-page-v2 { background: #fbf8f2; }
.property-top-v2 { padding: 24px 0 34px; }
.sample-breadcrumb { display:flex; flex-wrap:wrap; gap:8px; align-items:center; margin-bottom: 30px; color: var(--muted); font-size: 11px; }
.sample-breadcrumb strong { color: var(--ink); }
.property-title-row { display:flex; justify-content:space-between; align-items:end; gap:24px; margin-bottom: 24px; }
.property-title-row h1 { margin-bottom:8px; font-size: clamp(44px,5vw,64px); }
.property-location-line { margin:0; color:var(--muted); font-size:13px; }
.property-title-row .btn { border-radius:7px; }
.property-hero-carousel { width:100%; }
.property-hero-main { position:relative; height:560px; overflow:hidden; border-radius:18px; background:#ddd; box-shadow:0 14px 40px rgba(65,46,40,.09); }
.property-hero-main img { width:100%; height:100%; object-fit:cover; object-position:center 48%; }
.property-hero-arrow { position:absolute; top:50%; transform:translateY(-50%); z-index:3; width:44px; height:44px; border-radius:50%; border:1px solid rgba(47,40,36,.12); background:#fff; color:var(--ink); font-size:29px; line-height:1; cursor:pointer; box-shadow:0 8px 22px rgba(48,37,32,.12); }
.property-hero-arrow.prev { left:18px; }
.property-hero-arrow.next { right:18px; }
.property-thumbs { display:grid; grid-template-columns:repeat(6,1fr); gap:8px; margin-top:8px; }
.property-thumb { position:relative; height:96px; padding:0; border:2px solid transparent; border-radius:11px; overflow:hidden; background:#ddd; cursor:pointer; }
.property-thumb.active { border-color:var(--terracotta); }
.property-thumb img { width:100%; height:100%; object-fit:cover; }
.property-thumb.more span { position:absolute; inset:0; display:grid; place-items:center; background:rgba(45,31,26,.54); color:#fff; font-size:12px; font-weight:800; }
.property-detail-v2 { padding-top: 26px; }
.property-detail-grid { display:grid; grid-template-columns:minmax(0,1fr) 320px; gap:36px; align-items:start; }
.property-detail-main { min-width:0; }
.property-copy-block { padding-bottom:28px; border-bottom:1px solid var(--line); }
.property-copy-block h2 { max-width:720px; margin-bottom:12px; font-size:44px; }
.property-copy-block p:last-child { max-width:820px; margin:0; color:var(--muted); }
.amenity-icon-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:10px; padding:28px 0; border-bottom:1px solid var(--line); }
.amenity-icon-grid article { text-align:center; }
.amenity-icon-grid span { display:grid; place-items:center; width:42px; height:42px; margin:0 auto 8px; border-radius:12px; background:rgba(151,77,62,.08); color:var(--terracotta); font-size:18px; }
.amenity-icon-grid strong { display:block; font-size:11px; }
.amenity-icon-grid small { display:block; color:var(--muted); font-size:9px; }
.property-locations-block { display:grid; grid-template-columns:1fr 280px; gap:24px; align-items:center; padding:34px 0; border-bottom:1px solid var(--line); }
.property-locations-block h3,
.property-facilities-block h3 { margin-bottom:12px; font-family:"Cormorant Garamond", Georgia, serif; font-size:32px; }
.compact-checks { gap:8px; margin-top:14px; font-size:13px; }
.location-visual-card { min-height:190px; padding:26px; border-radius:18px; background:linear-gradient(145deg,#ede7dd,#dad7cb); display:flex; flex-direction:column; justify-content:center; }
.location-visual-card .map-pin { font-size:30px; color:var(--terracotta); }
.location-visual-card strong { margin-top:6px; font-size:16px; }
.location-visual-card small { margin:4px 0 14px; color:var(--muted); }
.location-visual-card a { color:var(--terracotta); font-size:12px; font-weight:800; }
.property-facilities-block { padding:34px 0 10px; }
.facility-photo-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.facility-photo-grid article { overflow:hidden; border-radius:14px; border:1px solid var(--line); background:#fff; }
.facility-photo-grid img { height:140px; object-fit:cover; }
.facility-photo-grid span { display:block; padding:9px 10px; font-size:10px; font-weight:700; }
.availability-card { position:sticky; top:104px; padding:28px; border-radius:18px; background:#fffaf4; border:1px solid var(--line); box-shadow:0 14px 36px rgba(64,46,40,.08); }
.availability-card > p { margin-bottom:2px; color:var(--muted); font-size:11px; }
.availability-price { color:var(--terracotta); font-family:"Cormorant Garamond", Georgia, serif; font-size:38px; font-weight:700; line-height:1; }
.availability-price span { color:var(--muted); font-family:Montserrat,sans-serif; font-size:10px; font-weight:600; }
.availability-card ul { list-style:none; padding:0; margin:22px 0; display:grid; gap:10px; color:var(--muted); font-size:11px; }
.availability-card .wide { width:100%; border-radius:7px; margin-top:8px; }
.btn-outline-terra { color:var(--terracotta); border-color:rgba(151,77,62,.35); background:transparent; }
.availability-help { margin-top:20px; padding:18px; border-radius:14px; background:#f4ede2; }
.availability-help strong { font-size:12px; }
.availability-help p { margin:5px 0 10px; color:var(--muted); font-size:10px; line-height:1.5; }
.availability-help a { color:var(--terracotta); font-size:10px; font-weight:800; }
.property-photo-slider-section { padding-top: 56px; }
.property-brand-strip { padding:32px 0 20px; }
.property-brand-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.mini-brand { position:relative; min-height:150px; padding:24px; overflow:hidden; border-radius:14px; color:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.mini-brand img { position:relative; z-index:1; width:170px; margin-bottom:12px; }
.mini-brand p { position:relative; z-index:1; margin:0; color:rgba(255,255,255,.86); font-size:10px; }
.property-final-cta { padding:34px 0 72px; }
.final-cta-card { display:flex; justify-content:space-between; align-items:center; gap:30px; padding:36px 44px; border-radius:18px; color:#fff; background:var(--sage) url('/assets/brand/sage-texture.webp') center/cover; }
.final-cta-card h2 { margin-bottom:4px; color:#fff; font-size:36px; }
.final-cta-card p { margin:0; color:rgba(255,255,255,.78); font-size:12px; }
.final-cta-card .btn { border-radius:7px; flex:0 0 auto; }

@media (max-width: 980px) {
  .home-header .mobile-menu { top:78px; }
  .sample-hero-copy { width:68%; padding-left:44px; }
  .brand-family-grid { grid-template-columns:1fr; }
  .brand-family-card { min-height:240px; }
  .sample-carousel-track { grid-auto-columns:calc((100% - 14px)/2); }
  .benefit-strip-card { grid-template-columns:1fr 1fr; }
  .benefit-strip-card article:nth-child(2) { border-right:0; }
  .benefit-strip-card article:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .sample-split-card { grid-template-columns:1fr; }
  .sample-split-images { min-height:420px; }
  .sample-steps { grid-template-columns:1fr 1fr; }
  .sample-steps article:nth-child(2) { border-right:0; }
  .sample-steps article:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .sample-contact-shell { grid-template-columns:1fr; }
  .sample-contact-form { margin-top:0; }
  .property-hero-main { height:480px; }
  .property-detail-grid { grid-template-columns:1fr; }
  .availability-card { position:static; }
  .amenity-icon-grid { grid-template-columns:repeat(3,1fr); }
}

@media (max-width: 680px) {
  .home-header .navbar { height:72px; }
  .home-header .mobile-menu { top:72px; }
  .sample-hero .container { width:100%; }
  .sample-hero-card { min-height:570px; border-radius:0; background-position:58% 45%; }
  .sample-hero-card::before { content:""; position:absolute; inset:0; z-index:1; background:linear-gradient(90deg,rgba(36,26,22,.80),rgba(36,26,22,.49) 72%,rgba(36,26,22,.24)); }
  .sample-hero-copy { width:100%; min-height:570px; padding:60px 26px 112px; }
  .sample-hero-copy h1 { font-size:46px; max-width:10ch; }
  .sample-hero-copy p { max-width:88%; font-size:13px; }
  .hero-location-badge { right:18px; bottom:18px; }
  .sample-brand-section { padding-top:0; }
  .sample-centered-head { margin-bottom:22px; }
  .sample-carousel { padding-left:26px; padding-right:26px; }
  .sample-carousel-track { grid-auto-columns:82%; }
  .sample-slide { height:300px; }
  .carousel-arrow { width:38px; height:38px; font-size:26px; }
  .benefit-strip-card { grid-template-columns:1fr; padding:8px 18px; }
  .benefit-strip-card article { border-right:0 !important; border-bottom:1px solid var(--line); padding:13px 2px; }
  .benefit-strip-card article:last-child { border-bottom:0; }
  .sample-split-copy { padding:38px 28px; }
  .sample-split-images { min-height:540px; grid-template-columns:1fr; grid-template-rows:repeat(3,1fr); }
  .sample-split-images .tall { grid-row:auto; }
  .sample-steps { grid-template-columns:1fr; }
  .sample-steps article { border-right:0 !important; border-bottom:1px solid var(--line); }
  .sample-steps article:last-child { border-bottom:0; }
  .sample-price-card { align-items:flex-start; flex-direction:column; padding:34px 28px; }
  .sample-contact-shell .home-contact-copy { padding:38px 28px; }
  .sample-contact-form { margin:10px; padding:26px 18px; }
  .property-title-row { align-items:flex-start; flex-direction:column; }
  .property-title-row .btn { width:100%; }
  .property-hero-main { height:520px; border-radius:14px; }
  .property-thumbs { grid-template-columns:repeat(3,1fr); }
  .property-thumb { height:90px; }
  .property-detail-grid { gap:24px; }
  .property-copy-block h2 { font-size:36px; }
  .amenity-icon-grid { grid-template-columns:repeat(2,1fr); }
  .property-locations-block { grid-template-columns:1fr; }
  .facility-photo-grid { grid-template-columns:1fr 1fr; }
  .facility-photo-grid img { height:160px; }
  .property-brand-grid { grid-template-columns:1fr; }
  .mini-brand { min-height:170px; }
  .final-cta-card { align-items:flex-start; flex-direction:column; padding:30px 26px; }
}

/* =========================================================
   Consistency pass — 2026-08-16
   ========================================================= */

/* One terracotta header / navigation system on every page */
.site-header.global-terra-header {
  background: var(--terracotta);
  border-bottom: 1px solid rgba(255,255,255,.14);
  backdrop-filter: none;
}
.global-terra-header .navbar { height: 78px; }
.global-terra-header .brand img { width: 150px; }
.global-terra-header .nav-links {
  color: #fff;
  gap: 26px;
  font-size: 12px;
  font-weight: 600;
}
.global-terra-header .nav-links a:not(.btn)::after { background: rgba(255,255,255,.78); }
.global-terra-header .btn-header-light {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: #fffaf4;
  color: var(--terracotta-dark);
  box-shadow: none;
}
.global-terra-header .btn-header-light:hover { background:#fff; transform:translateY(-1px); }
.global-terra-header .menu-btn { background: rgba(255,255,255,.14); color:#fff; }
.global-terra-header .mobile-menu { background: var(--terracotta); color:#fff; border-bottom-color:rgba(255,255,255,.14); }
.global-terra-header .mobile-menu .mobile-wa-link {
  margin-top:8px;
  padding:12px 16px;
  border-radius:8px;
  background:#fffaf4;
  color:var(--terracotta-dark);
  text-align:center;
}

/* Homepage hero: retain current composition/photo while restoring previous message */
.sample-hero { padding-bottom: 40px; }
.sample-hero-copy h1 { max-width: 10.2ch; font-size: clamp(48px,5.45vw,76px); }
.sample-hero-copy p { font-size: 15px; max-width: 540px; margin-bottom: 18px; }
.sample-hero-price {
  display:flex;
  align-items:baseline;
  gap:10px;
  flex-wrap:wrap;
  margin: 2px 0 24px;
  color:rgba(255,255,255,.84);
}
.sample-hero-price strong { color:#fff; font-size:32px; line-height:1; }
.sample-hero-price span { font-size:14px; }
.sample-hero-actions .btn-hero-whatsapp {
  min-height:46px;
  padding:0 20px;
  border-radius:7px;
  background:var(--terracotta);
  color:#fff;
}
.sample-hero-actions .btn-light { color:var(--terracotta-dark); }

/* Search/location options directly beneath the hero */
.home-search-panel {
  margin-top: -18px;
  padding-bottom: 34px;
  position:relative;
  z-index:8;
}
.home-search-panel .search-box {
  border-radius:20px;
  padding:16px 18px;
  grid-template-columns:1.2fr 1fr 1fr auto;
  background:rgba(255,250,244,.97);
  box-shadow:0 18px 46px rgba(76,52,44,.10);
}
.home-search-panel .field { padding:8px 18px; }
.home-search-panel .field label { font-size:10px; }
.home-search-panel .field select { font-size:14px; }
.home-search-panel .btn { min-width:145px; border-radius:999px; }

/* Homepage requested order and spacing */
.sample-gallery-section { padding-top: 44px; }
.sample-gallery-section .sample-centered-head { margin-bottom:28px; }
.sample-content-section { padding-top:64px; }
.sample-location-cards { padding-top:82px; }
.sample-location-cards .location-card-heading { margin-bottom:36px; }
.sample-location-cards .location-card-heading h2 { max-width:720px; }
.sample-location-cards .location-card { min-height:420px; display:flex; flex-direction:column; }
.sample-location-cards .location-card .location-meta { margin-top:auto; }
.sample-location-cards .location-card .btn { align-self:flex-start; }
.sample-process-section { padding-top:90px; }
.sample-process-section .sample-centered-head { margin-bottom:30px; }

/* About: brand family panels now live here */
.about-brand-section { padding: 66px 0 78px; }
.about-brand-section .sample-centered-head { max-width:800px; }

/* Property page: slightly larger, easier-to-read type while preserving layout */
.property-page-v2 { font-size:15px; }
.property-page-v2 .sample-breadcrumb { font-size:12px; }
.property-page-v2 .property-location-line { font-size:14px; }
.property-page-v2 .property-copy-block p:last-child { font-size:15px; line-height:1.75; }
.property-page-v2 .amenity-icon-grid strong { font-size:13px; }
.property-page-v2 .amenity-icon-grid small { font-size:11px; }
.property-page-v2 .compact-checks { font-size:14px; }
.property-page-v2 .location-visual-card strong { font-size:17px; }
.property-page-v2 .location-visual-card small { font-size:12px; line-height:1.55; }
.property-page-v2 .location-visual-card a { font-size:13px; }
.property-page-v2 .facility-photo-grid span { font-size:12px; }
.property-page-v2 .availability-card > p { font-size:12px; }
.property-page-v2 .availability-price span { font-size:11px; }
.property-page-v2 .availability-card ul { font-size:12px; line-height:1.55; }
.property-page-v2 .availability-help strong { font-size:13px; }
.property-page-v2 .availability-help p { font-size:11px; }
.property-page-v2 .availability-help a { font-size:11px; }
.property-page-v2 .mini-brand p { font-size:11px; }
.property-page-v2 .property-photo-slider-section .muted { font-size:14px; }

/* Final property CTA uses the main brand terracotta instead of green */
.final-cta-card {
  background: var(--terracotta) url('/assets/brand/terracotta-texture.webp') center/cover;
}
.final-cta-card p { font-size:14px; }

@media (max-width: 980px) {
  .global-terra-header .mobile-menu { top:78px; }
  .home-search-panel { margin-top:-10px; }
  .home-search-panel .search-box { grid-template-columns:1fr 1fr; }
  .home-search-panel .field:nth-child(2) { border-right:0; }
  .home-search-panel .field:nth-child(3) { border-top:1px solid var(--line); }
  .home-search-panel .btn { min-height:54px; }
  .sample-location-cards .location-grid { grid-template-columns:1fr; }
  .sample-location-cards .location-card { min-height:auto; }
}

@media (max-width: 680px) {
  .global-terra-header .navbar { height:72px; }
  .global-terra-header .brand img { width:142px; }
  .global-terra-header .mobile-menu { top:72px; }
  .sample-hero-copy h1 { font-size:47px; max-width:10.5ch; }
  .sample-hero-price strong { font-size:28px; }
  .home-search-panel { margin-top:0; padding:16px 0 32px; }
  .home-search-panel .search-box { grid-template-columns:1fr; border-radius:18px; padding:14px; }
  .home-search-panel .field { border-right:0; border-bottom:1px solid var(--line); padding:10px 8px; }
  .home-search-panel .field:nth-child(3) { border-top:0; }
  .home-search-panel .btn { width:100%; margin-top:4px; }
  .sample-location-cards { padding-top:64px; }
  .sample-location-cards .location-card-heading { align-items:flex-start; }
  .sample-location-cards .location-card { padding:28px; }
}

/* =========================================================
   Refinement pass — hero overlay + flat terracotta cards
   ========================================================= */

/* Homepage hero: give the long headline more breathing room while keeping
   the current photo and overall composition. */
.home-page .sample-hero-copy {
  width: min(660px, 60%);
  padding: 66px 0 96px 60px;
}
.home-page .sample-hero-copy h1 {
  max-width: 640px;
  font-size: clamp(46px, 4.65vw, 64px);
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
  margin-bottom: 16px;
}
.home-page .sample-hero-copy p {
  max-width: 545px;
  line-height: 1.65;
}
.home-page .sample-hero-card {
  background-image:
    linear-gradient(90deg, rgba(36,26,22,.78) 0%, rgba(36,26,22,.62) 34%, rgba(36,26,22,.23) 64%, rgba(36,26,22,.06) 100%),
    url('/assets/images/property-01.webp');
}

/* Use one clean, flat brand terracotta treatment for the highlighted boxes
   on Tentang Kami, FAQ and Kontak. No decorative circles or texture layers. */
.about-page .cta-card,
.faq-page .price-banner,
.contact-page .contact-card {
  background: var(--terracotta);
  background-image: none;
  border-radius: 22px;
  box-shadow: none;
}

.about-page .cta-card {
  min-height: 0;
  padding: 44px 50px;
  display: block;
  text-align: left;
}
.about-page .cta-card img { display: none; }
.about-page .cta-card::before,
.about-page .cta-card::after { content: none; display: none; }
.about-page .cta-content {
  max-width: none;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  column-gap: 34px;
  row-gap: 8px;
  align-items: center;
  text-align: left;
}
.about-page .cta-content h2 {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.2vw, 48px);
}
.about-page .cta-content p {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  color: rgba(255,255,255,.82);
}
.about-page .cta-actions {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-content: flex-end;
  align-items: center;
}

.faq-page .price-banner {
  padding: 44px 50px;
  overflow: hidden;
}
.faq-page .price-banner::before,
.faq-page .price-banner::after { content: none; display: none; }

.contact-page .contact-card {
  padding: 42px;
}
.contact-page .contact-card::before,
.contact-page .contact-card::after { content: none; display: none; }

@media (max-width: 980px) {
  .home-page .sample-hero-copy {
    width: 70%;
    padding: 58px 0 92px 44px;
  }
  .home-page .sample-hero-copy h1 {
    max-width: 12.5ch;
    font-size: clamp(44px, 6.2vw, 58px);
  }
  .about-page .cta-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .about-page .cta-content h2,
  .about-page .cta-content p,
  .about-page .cta-actions {
    grid-column: 1;
    grid-row: auto;
  }
  .about-page .cta-actions {
    justify-content: flex-start;
    margin-top: 14px;
  }
}

@media (max-width: 680px) {
  .home-page .sample-hero-copy {
    width: 100%;
    padding: 54px 24px 108px;
  }
  .home-page .sample-hero-copy h1 {
    max-width: 13ch;
    font-size: 41px;
    line-height: 1.03;
  }
  .home-page .sample-hero-copy p {
    max-width: 94%;
  }
  .about-page .cta-card,
  .faq-page .price-banner,
  .contact-page .contact-card {
    border-radius: 18px;
  }
  .about-page .cta-card,
  .faq-page .price-banner {
    padding: 32px 26px;
  }
  .contact-page .contact-card { padding: 30px 26px; }
}


/* About main philosophy card: match the flat terracotta CTA treatment. */
.about-page .amenities-copy {
  background: var(--terracotta);
  background-image: none;
  border-radius: 22px;
  box-shadow: none;
}
.about-page .amenities-copy::before,
.about-page .amenities-copy::after {
  content: none;
  display: none;
}
