/*
Theme Name: Kantorjakarta
Theme URI: https://kantorjakarta.id
Author: Ardiruma Team
Author URI: https://ardiruma.com
Description: Tema kustom untuk direktori Coworking & Virtual Office Jakarta.
Version: 1.0
Text Domain: kantorjakarta
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --sage:    #1B3A6B;
  --sage-mid:#142D55;
  --sage-lt: #EAF0F8;
  --sage-pale:#F4F7FC;
  --terra:   #C2692A;
  --terra-lt:#FDF0E8;
  --sand:    #F5EFE6;
  --text:    #1C2333;
  --text-2:  #3D4A5C;
  --text-3:  #8a8f9a;
  --line:    #E2E8F0;
  --white:   #FFFFFF;
  --r:       10px;
  --r-lg:    18px;
  --font:    'DM Sans', sans-serif;
  --serif:   'DM Serif Display', serif;
  --nav-h:   58px;
}
body { font-family: var(--font); color: var(--text); background: var(--white); font-size: 14px; line-height: 1.55; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
strong { font-weight: 600; }

/* ─── TOPBAR ──────────────────────────────────────── */
.topbar {
  background: #142D55; color: rgba(255,255,255,.85);
  display: flex; align-items: center; justify-content: center; gap: 36px;
  height: 34px; font-size: 12px; font-weight: 500;
}
.topbar a { color: rgba(255,255,255,.85); display:flex; align-items:center; gap:5px; }
.topbar a:hover { color:#fff; }
.topbar svg { width:13px; height:13px; }
.topbar .dot { width:3px; height:3px; border-radius:50%; background:rgba(255,255,255,.35); }
.topbar .highlight { color: #93C5FD; font-weight: 700; }

/* ─── NAVBAR ──────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 20px;
  padding: 0 40px; height: var(--nav-h);
}
.nav-logo { display: inline-flex; align-items: baseline; gap: 6px; flex-shrink: 0; text-decoration: none; }
.nav-logo-text { font-family: var(--serif); font-size: 22px; color: var(--sage); letter-spacing: 3px; line-height: 1; }
.nav-logo-text sup { font-family: var(--font); font-size: 9px; font-weight: 700; color: var(--terra); vertical-align: super; letter-spacing: .5px; margin-left: 1px; }
.nav-logo-sub { font-family: var(--font); font-size: 10px; font-weight: 700; color: var(--text-3); letter-spacing: 1px; text-transform: uppercase; margin-left: 4px; padding: 3px 8px; background: var(--sage-lt); border-radius: 6px; }
.nav-pill {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--line); border-radius: 28px;
  overflow: hidden; flex-shrink: 0;
}
.nav-pill a {
  padding: 7px 18px; font-size: 13px; font-weight: 600; color: var(--text-2);
  border-right: 1px solid var(--line); white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-pill a:last-child { border-right: none; }
.nav-pill a.active, .nav-pill a:hover { background: var(--sage); color: #fff; }
.nav-search {
  flex: 1; max-width: 340px;
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 28px;
  padding: 8px 16px; background: var(--sand);
  color: var(--text-3); font-size: 13px;
}
.nav-search svg { width: 15px; height: 15px; flex-shrink: 0; }
.nav-actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.nav-actions a { font-size: 13px; font-weight: 500; color: var(--text-2); }
.nav-actions a:hover { color: var(--sage); }
.nav-cta {
  padding: 9px 22px; background: var(--terra); color: #fff;
  border-radius: 28px; font-size: 13px; font-weight: 700; white-space: nowrap;
  transition: background .15s; margin-left: auto;
}
.nav-cta:hover { background: #4A6741; }

/* ─── HAMBURGER ───────────────────────────────────── */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; cursor: pointer; margin-left: auto;
  border: 1px solid var(--line); border-radius: 8px; padding: 8px;
  background: var(--sand);
}
.nav-hamburger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 2px solid var(--line);
  z-index: 99; padding: 16px 20px 24px; box-shadow: 0 12px 32px rgba(0,0,0,.1);
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 14px; font-size: 15px; font-weight: 600; color: var(--text);
  border-radius: 10px; display: flex; align-items: center; gap: 10px;
  transition: background .15s;
}
.mobile-menu a:hover, .mobile-menu a.active { background: var(--sage-pale); color: var(--sage); }
.mobile-menu .menu-sep { height: 1px; background: var(--line); margin: 8px 0; }
.mobile-menu .menu-cta {
  margin-top: 8px; padding: 14px; background: var(--terra); color: #fff;
  border-radius: 12px; text-align: center; font-weight: 700; font-size: 14px;
}
.mobile-menu .menu-login {
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  text-align: center; font-weight: 600; color: var(--text-2);
}

/* ─── HERO ────────────────────────────────────────── */
.hero-workspace {
  overflow: hidden;
  position: relative;
  min-height: 600px;
  display: flex; align-items: flex-end;
  background: #0F1E2E;
}
.hero-workspace-bg {
  position: absolute; inset: 0;
  background-image: url('https://yayasan.satosig.com/wp-content/uploads/2026/05/sectionlayanan2.png');
  background-size: cover; background-position: center;
}
.hero-workspace-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,25,40,.88) 0%, rgba(10,25,40,.55) 55%, rgba(10,25,40,.2) 100%);
}
.hero-ws-content {
  position: relative; z-index: 2;
  padding: 44px 48px;
  max-width: 600px;
}
.hero-ws-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(125,155,118,.25); border: 1px solid rgba(125,155,118,.5);
  backdrop-filter: blur(8px);
  color: #93C5FD; font-size: 11px; font-weight: 700; padding: 5px 14px;
  border-radius: 20px; margin-bottom: 18px; letter-spacing: .5px;
}
.hero-ws-pill svg { width: 12px; height: 12px; }
.hero-ws-title {
  font-family: var(--serif); font-size: 36px; line-height: 1.15;
  color: #fff; margin-bottom: 12px;
}
.hero-ws-title em { font-style: italic; color: #93C5FD; }
.hero-ws-sub { font-size: 14px; color: rgba(255,255,255,.72); margin-bottom: 24px; line-height: 1.6; }
.hero-search-bar {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 14px;
  padding: 8px 8px 8px 18px;
  max-width: 480px;
}
.hero-search-bar svg {
  width: 18px; height: 18px; stroke: rgba(255,255,255,.7); flex-shrink: 0;
}
.hero-search-bar input {
  flex: 1; background: none; border: none; outline: none;
  font-family: var(--font); font-size: 14px; font-weight: 400;
  color: #fff;
}
.hero-search-bar input::placeholder { color: rgba(255,255,255,.55); }
.hero-search-bar button {
  padding: 10px 22px; background: var(--sage); color: #fff;
  border: none; border-radius: 10px; font-size: 13px; font-weight: 700;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  font-family: var(--font); transition: background .15s;
}
.hero-search-bar button:hover { background: var(--sage-mid); }
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 16px;
}
.hero-chip {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,.75);
  padding: 6px 14px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1);
  cursor: pointer; transition: all .15s; backdrop-filter: blur(4px);
}
.hero-chip:hover { border-color: rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.2); }
@media (max-width: 768px) {
  .hero-workspace { margin: 0; min-height: 500px; border-radius: 0; align-items: flex-end; }
  .hero-ws-content { padding: 32px 20px 36px; max-width: 100%; }
  .hero-ws-title { font-size: 28px; }
  .hero-ws-sub { font-size: 13px; margin-bottom: 20px; }
  .hero-search-bar { max-width: 100%; padding: 6px 6px 6px 14px; gap: 8px; }
  .hero-search-bar input { font-size: 13px; min-width: 0; }
  .hero-search-bar button { padding: 9px 16px; font-size: 12px; }
  .hero-chips { gap: 6px; margin-top: 14px; }
  .hero-chip { font-size: 11px; padding: 5px 12px; }
}
@media (max-width: 480px) {
  .hero-workspace { min-height: 500px; }
  .hero-ws-title { font-size: 26px; }
  .hero-search-bar { border-radius: 12px; }
}

/* ─── DEV/PARTNER STRIP ───────────────────────────── */
.dev-strip {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 28px; border-bottom: 1px solid var(--line);
  background: var(--white); overflow-x: auto; scrollbar-width: none;
}
.dev-strip::-webkit-scrollbar { display: none; }
.dev-strip-label {
  font-size: 10.5px; font-weight: 700; color: var(--text-3);
  text-transform: uppercase; letter-spacing: .8px;
  white-space: nowrap; flex-shrink: 0;
}
.dev-logos { display: flex; align-items: center; gap: 6px; flex: 1; }
.dev-logo {
  flex: 1; min-width: 80px; max-width: 110px;
  height: 44px; border: 1px solid var(--line);
  border-radius: var(--r); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: var(--text-3);
  text-align: center; line-height: 1.3; letter-spacing: -.1px;
  cursor: pointer; transition: all .15s;
}
.dev-logo:hover { border-color: var(--sage); color: var(--sage-mid); background: var(--sage-pale); }

/* ─── SECTION WRAPPER ─────────────────────────────── */
.section { padding: 32px 40px 0; }
.section-hd { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 20px; }
.section-hd-left {}
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--terra); margin-bottom: 4px;
}
.section-title { font-family: var(--serif); font-size: 34px; line-height: 1.2; }
.section-sub { font-size: 12.5px; color: var(--text-3); margin-top: 4px; }
.see-all {
  font-size: 12.5px; font-weight: 600; color: var(--sage);
  display: flex; align-items: center; gap: 4px; white-space: nowrap;
  border: 1px solid var(--sage-lt); border-radius: 20px; padding: 5px 14px;
  transition: background .15s;
}
.see-all:hover { background: var(--sage-lt); }

/* ─── SPACE CARDS (equiv. prop-card) ──────────────── */
.space-carousel {
  display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding: 4px 0 16px;
}
.space-carousel::-webkit-scrollbar { display: none; }

.space-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

/* ─── POPULER GRID (desktop 4-col) ───────────────────── */
.populer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.populer-grid .space-card { min-width: 0; flex-shrink: unset; }
.populer-row-extra { display: none; }
.populer-row-extra.visible { display: contents; }
.btn-lihat-lainnya {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 20px auto 0; padding: 11px 32px;
  border: 1.5px solid var(--sage); border-radius: 28px;
  font-size: 13px; font-weight: 700; color: var(--sage);
  background: var(--white); cursor: pointer;
  transition: background .15s, color .15s;
  font-family: var(--font);
}
.btn-lihat-lainnya:hover { background: var(--sage); color: #fff; }

.space-card {
  border-radius: var(--r-lg); border: 1px solid var(--line);
  overflow: hidden; cursor: pointer; transition: box-shadow .2s, transform .2s;
  background: var(--white); scroll-snap-align: start; flex-shrink: 0;
}
.space-card:hover { box-shadow: 0 6px 22px rgba(0,0,0,.08); transform: translateY(-2px); }

.space-thumb {
  height: 160px; position: relative; overflow: hidden;
}
.space-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.space-card:hover .space-thumb img { transform: scale(1.04); }
.badge-space {
  position: absolute; top: 10px; left: 10px;
  background: var(--sage); color: #fff;
  font-size: 10px; font-weight: 700; padding: 2px 9px; border-radius: 20px;
}
.badge-space.hot { background: var(--terra); }
.badge-space.new { background: #1B3A6B; }
.space-body { padding: 12px 14px; }
.space-tipe { font-size: 10.5px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.space-name { font-size: 13.5px; font-weight: 700; line-height: 1.3; margin-bottom: 3px; }
.space-loc { font-size: 11.5px; color: var(--text-3); display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.space-loc svg { width: 12px; height: 12px; flex-shrink: 0; }
.space-price { font-family: var(--serif); font-size: 16px; color: var(--sage); }
.space-price span { font-family: var(--font); font-size: 11px; color: var(--text-3); font-weight: 400; }
.space-meta { display: flex; gap: 6px; margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--line); flex-wrap: nowrap; overflow: hidden; }
.space-meta-item { display: flex; align-items: center; gap: 3px; font-size: 9.5px; color: var(--text-3); white-space: nowrap; }
.space-meta-item svg { width: 12px; height: 12px; }
.space-promo {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--terra-lt); color: var(--terra);
  font-size: 10.5px; font-weight: 700; padding: 3px 8px; border-radius: 6px;
  margin-top: 8px;
}

/* Carousel navigation */
.slider-nav { display: flex; align-items: center; gap: 8px; }
.slider-btn {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color .2s, color .2s, background .2s; color: var(--text-2);
}
.slider-btn:hover { border-color: var(--sage); color: var(--sage); background: var(--sage-pale); }
.slider-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ─── SERVICE ROW ─────────────────────────────────── */
.svc-row {
  display: flex; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
}
.svc-item {
  flex: 1; display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-right: 1px solid var(--line);
  background: var(--white); cursor: pointer; text-decoration: none;
  transition: background .15s;
}
.svc-item:last-child { border-right: none; }
.svc-item:hover { background: var(--sage-pale); }
.svc-item--cta { background: var(--sage-pale); }
.svc-item--cta:hover { background: var(--sage-lt); }
.svc-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--sage-lt); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.svc-icon svg { width: 18px; height: 18px; stroke: var(--sage); fill: none; stroke-width: 1.8; }
.svc-text { flex: 1; }
.svc-name { font-size: 13px; font-weight: 700; color: var(--text); }
.svc-sub  { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.svc-arr  { font-size: 18px; color: var(--text-3); font-weight: 300; flex-shrink: 0; }

/* ─── LOC CHIP ────────────────────────────────────── */
.loc-strip {
  display: flex; gap: 6px; flex-wrap: wrap; margin-top: 0;
}
.loc-chip {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 14px; border-radius: 20px;
  border: 1px solid var(--line); background: var(--white);
  font-size: 12px; font-weight: 500; color: var(--text-2);
  cursor: pointer; transition: all .15s; white-space: nowrap;
}
.loc-chip:hover { border-color: var(--sage); color: var(--sage); background: var(--sage-lt); }
.loc-chip.active { border-color: var(--sage); color: var(--sage); background: var(--sage-lt); font-weight: 700; }
.loc-chip svg { width: 12px; height: 12px; }

/* ─── WILAYAH / REGION SECTION ────────────────────── */
.interior-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 20px; align-items: stretch;
}
.interior-left { display: flex; flex-direction: column; gap: 10px; }
.room-card {
  border-radius: var(--r-lg); border: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px; padding: 15px 16px;
  cursor: pointer; transition: border-color .18s, background .18s; background: var(--white);
  flex: 1;
}
.room-card:hover, .room-card.active { border-color: var(--sage); background: var(--sage-lt); }
.room-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.room-icon svg { width: 22px; height: 22px; }
.room-info h4 { font-size: 13.5px; font-weight: 700; }
.room-info p { font-size: 11.5px; color: var(--text-3); margin-top: 2px; }
.room-arrow { margin-left: auto; color: var(--text-3); font-size: 18px; font-weight: 300; }
.gaya-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.gaya-card {
  border-radius: 14px; overflow: hidden; position: relative;
  height: 120px; cursor: pointer;
  display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid var(--line);
}
.gaya-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease; z-index: 1;
}
.gaya-card:hover .gaya-img { transform: scale(1.06); }
.gaya-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.05) 60%);
  z-index: 2;
}
.gaya-name {
  position: relative; z-index: 3;
  font-size: 12.5px; font-weight: 700; color: #fff;
  padding: 10px 12px 2px; text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.gaya-sub {
  position: relative; z-index: 3;
  font-size: 11px; color: rgba(255,255,255,.75);
  padding: 0 12px 12px;
}

/* Banner konsultasi */
.konsul-banner {
  border-radius: var(--r-lg); padding: 22px 24px;
  background: linear-gradient(130deg, #1B3A6B 0%, #142D55 100%);
  display: flex; align-items: center; gap: 18px;
  margin-top: 4px;
}
.konsul-banner-icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: rgba(255,255,255,.14); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
}
.konsul-banner-icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.8; }
.konsul-banner-text h3 { font-family: var(--serif); font-size: 17px; color: #fff; line-height: 1.25; }
.konsul-banner-text p { font-size: 12px; color: rgba(255,255,255,.72); margin-top: 5px; }
.konsul-banner .btn-konsul {
  margin-left: auto; flex-shrink: 0;
  padding: 11px 22px; background: #fff; color: var(--sage);
  border-radius: 24px; font-size: 12.5px; font-weight: 700; white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.konsul-banner .btn-konsul:hover { background: var(--sage-lt); }

/* ─── BLOG GRID ───────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.blog-card {
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  display: flex; align-items: flex-end; padding: 14px;
  cursor: pointer; transition: transform .2s;
  height: 160px;
}
.blog-card:hover { transform: scale(1.02); }
.blog-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 65%); }
.blog-label { position: relative; z-index: 1; color: #fff; }
.blog-label .tag { font-size: 10px; font-weight: 700; letter-spacing: .5px; opacity: .8; text-transform: uppercase; background: var(--terra); padding: 2px 8px; border-radius: 4px; display: inline-block; margin-bottom: 4px; }
.blog-label h4 { font-size: 13px; font-weight: 700; line-height: 1.3; margin-top: 2px; }
.blog-label .date { font-size: 10px; opacity: .75; margin-top: 2px; display: block; }

/* ─── PROMO BANNER ────────────────────────────────── */
.promo-full {
  margin: 32px 28px 0; border-radius: var(--r-lg);
  overflow: hidden; position: relative;
  min-height: 220px;
  display: flex; align-items: stretch;
  background: #E6EDE8;
}
.promo-img-half {
  width: 38%; flex-shrink: 0; position: relative; overflow: hidden;
}
.promo-img-half img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.promo-full:hover .promo-img-half img { transform: scale(1.04); }
.promo-img-half::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 40%, #E6EDE8 100%);
}
.promo-text-half {
  flex: 1; background: #E6EDE8;
  padding: 30px 48px;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 20px;
}
.promo-text-half h2 {
  font-family: var(--font); font-size: 24px; font-weight: 800; color: #243B27;
  line-height: 1.35; margin: 0; max-width: 560px;
}
.promo-text-half h2 em { font-style: normal; color: var(--terra); }
.promo-text-half .actions { display: flex; gap: 10px; flex-shrink: 0; align-items: center; }
.promo-text-half .btn-promo {
  padding: 14px 32px; background: var(--terra); color: #fff;
  border-radius: 8px; font-size: 15px; font-weight: 700;
  transition: all .2s ease; white-space: nowrap; border: none; cursor: pointer;
}
.promo-text-half .btn-promo:hover { background: #A85A24; transform: translateY(-2px); }
.promo-text-half .btn-ghost {
  padding: 13px 24px; border: 1.5px solid var(--sage-mid); color: var(--sage-mid);
  border-radius: 8px; font-size: 14px; font-weight: 600; white-space: nowrap;
}

/* ─── BRAND STRIP ─────────────────────────────────── */
.brand-strip {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
}
.brand-item {
  flex: 1; text-align: center; padding: 16px 10px;
  border-right: 1px solid var(--line);
  font-size: 13px; font-weight: 800; color: var(--text-3);
  letter-spacing: -.3px; cursor: pointer; transition: all .15s;
}
.brand-item:last-child { border-right: none; }
.brand-item:hover { color: var(--sage); background: var(--sage-pale); }

/* ─── USP BAR ─────────────────────────────────────── */
.usp-bar {
  background: var(--text); border-radius: var(--r-lg);
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin: 28px 40px 0;
}
.usp-item {
  padding: 20px 22px; display: flex; align-items: center; gap: 12px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.usp-item:last-child { border-right: none; }
.usp-icon {
  width: 38px; height: 38px; background: rgba(255,255,255,.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.usp-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 1.8; }
.usp-text h4 { font-size: 12.5px; font-weight: 700; color: #fff; }
.usp-text p { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ─── BOTTOM CTA ──────────────────────────────────── */
.bottom-cta {
  margin: 28px 40px 0;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, #142D55 0%, #1B3A6B 100%);
  padding: 52px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.bottom-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1000&q=50');
  background-size: cover; background-position: center;
  opacity: .06;
}
.bottom-cta .eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; position: relative; z-index: 2; }
.bottom-cta h2 { font-family: var(--serif); font-size: 32px; color: #fff; line-height: 1.2; position: relative; z-index: 2; }
.bottom-cta p { font-size: 14px; color: rgba(255,255,255,.65); margin-top: 10px; position: relative; z-index: 2; }
.bottom-cta .cta-row { display: flex; gap: 10px; justify-content: center; margin-top: 24px; position: relative; z-index: 2; }
.bottom-cta .btn-primary { padding: 13px 30px; background: var(--terra); color: #fff; border-radius: 28px; font-size: 14px; font-weight: 700; display: inline-block; transition: background .15s; }
.bottom-cta .btn-primary:hover { background: #A85A24; }
.bottom-cta .btn-secondary { padding: 12px 28px; border: 1.5px solid rgba(255,255,255,.35); color: #fff; border-radius: 28px; font-size: 14px; font-weight: 600; display: inline-block; }
.bottom-cta .btn-secondary:hover { background: rgba(255,255,255,.1); }

/* ─── PRE-FOOTER SEO ──────────────────────────────── */
.seo-wrapper {
  background: var(--sand); border-top: 1px solid var(--line);
  padding: 48px 28px 20px; margin-top: 48px;
}
.seo-links { margin-bottom: 36px; }
.seo-links:last-child { margin-bottom: 0; }
.seo-title {
  font-family: var(--serif); font-size: 20px; color: var(--sage);
  margin-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,.06); padding-bottom: 12px;
}
.seo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.seo-col h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.seo-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.seo-col ul li a { font-size: 12px; color: var(--text-3); transition: all .2s ease; }
.seo-col ul li a:hover { color: var(--sage); font-weight: 500; padding-left: 4px; }

/* ─── DIVIDER ─────────────────────────────────────── */
.divider { height: 1px; background: var(--line); margin: 28px 40px 0; }

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: #142D55; color: #9CA3AF;
  padding: 40px 28px 24px; margin-top: 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 36px; }
.footer-brand .logo { font-family: var(--serif); font-size: 22px; color: var(--sage-mid); margin-bottom: 10px; letter-spacing: 2px; }
.footer-brand p { font-size: 12px; line-height: 1.7; }
.footer-col h4 { font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li { font-size: 12px; cursor: pointer; transition: color .15s; }
.footer-col ul li:hover { color: var(--sage-mid); }
.footer-bottom {
  margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: rgba(255,255,255,.3);
}
.pay-logos { display: flex; gap: 6px; flex-wrap: wrap; }
.pay-logos span {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px; padding: 3px 8px; font-size: 10px; font-weight: 600; color: rgba(255,255,255,.45);
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  .loc-strip { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
  .loc-strip::-webkit-scrollbar { display: none; }
  .topbar { display: none; }
  .navbar { padding: 0 16px; gap: 10px; }
  .nav-pill, .nav-search, .nav-actions, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 24px 12px 0; }
  .section-hd { flex-wrap: wrap; gap: 10px; }
  .hero-wrap { padding: 28px 16px 24px; }
  .space-grid { grid-template-columns: 1fr 1fr; }
  .populer-grid { display: grid; grid-template-columns: 1fr 1fr; overflow-x: unset; scroll-snap-type: unset; scrollbar-width: unset; padding: 0; gap: 12px; }
  .populer-grid::-webkit-scrollbar { display: unset; }
  .populer-grid .space-card { min-width: 0; flex-shrink: unset; scroll-snap-align: unset; }

  .interior-grid { grid-template-columns: 1fr; }
  .gaya-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 4px 0 16px; gap: 12px; }
  .blog-grid::-webkit-scrollbar { display: none; }
  .blog-card { min-width: 240px; flex-shrink: 0; scroll-snap-align: start; height: 160px; }
  .promo-full { flex-direction: column; margin: 24px 12px 0; min-height: auto; }
  .promo-img-half { width: 100%; height: 200px; flex-shrink: 0; }
  .promo-img-half::after { background: linear-gradient(to bottom, transparent 40%, #E6EDE8 100%); }
  .promo-text-half { padding: 24px 20px 28px; gap: 16px; }
  .promo-text-half h2 { font-size: 20px; }
  .brand-strip { flex-wrap: wrap; }
  .brand-item { flex: 0 0 25%; border-bottom: 1px solid var(--line); }
  .usp-bar { grid-template-columns: 1fr 1fr; margin: 20px 12px 0; }
  .usp-item:nth-child(2) { border-right: none; }
  .usp-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.08); }
  .bottom-cta { margin: 20px 12px 0; padding: 36px 24px; }
  .bottom-cta h2 { font-size: 24px; }
  .bottom-cta .cta-row { flex-direction: column; }
  .seo-wrapper { padding: 32px 16px 16px; margin-top: 32px; }
  .seo-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .konsul-banner { flex-direction: column; text-align: center; }
  .konsul-banner .btn-konsul { margin-left: 0; width: 100%; text-align: center; }
  footer { padding: 32px 16px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; gap: 14px; align-items: flex-start; }
  .svc-row { flex-direction: row; flex-wrap: wrap; }
  .svc-item { flex: 0 0 calc(50% - 0px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .svc-item:nth-child(even) { border-right: none; }
  .svc-item--cta { flex: 0 0 100%; border-right: none; border-bottom: none; justify-content: center; }
}
@media (max-width: 480px) {
  .space-grid { grid-template-columns: 1fr; }
  .usp-bar { grid-template-columns: 1fr; }
  .usp-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }

  .footer-grid { grid-template-columns: 1fr; }
  .seo-grid { grid-template-columns: 1fr; }
}
/* ─── MAX WIDTH ───────────────────────────────────── */
@media (min-width: 1400px) {
  .navbar, .hero-wrap, .dev-strip, .section, .seo-wrapper, footer {
    padding-left: calc((100% - 1400px) / 2);
    padding-right: calc((100% - 1400px) / 2);
  }
}

/* ═══════════════════════════════════════════════════
   ARCHIVE BLOG — halaman kategori / tag / search
═══════════════════════════════════════════════════ */
.blog-arc-header { padding: 48px 40px; text-align: center; background: var(--sage-pale); border-bottom: 1px solid var(--line); }
.blog-arc-label { font-size: 12px; font-weight: 700; color: var(--sage); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.blog-arc-title { font-family: var(--serif); font-size: 36px; color: var(--text); }

.blog-arc-wrap { max-width: 1200px; margin: 0 auto; padding: 40px 28px; display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.blog-list { display: flex; flex-direction: column; gap: 32px; }
.blog-row { display: grid; grid-template-columns: 240px 1fr; gap: 24px; text-decoration: none; color: inherit; }
.blog-row-img { border-radius: var(--r); overflow: hidden; height: 180px; }
.blog-row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-row:hover .blog-row-img img { transform: scale(1.05); }
.blog-row-body { display: flex; flex-direction: column; justify-content: center; }
.blog-row-meta { font-size: 12px; color: var(--text-3); margin-bottom: 8px; }
.blog-row-meta span.cat { color: var(--terra); font-weight: 600; }
.blog-row-title { font-size: 20px; font-weight: 700; line-height: 1.3; margin-bottom: 10px; transition: color .2s; }
.blog-row:hover .blog-row-title { color: var(--sage); }
.blog-row-excerpt { font-size: 14px; color: var(--text-2); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-sidebar-box { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; margin-bottom: 24px; background: var(--white); }
.blog-sidebar-box h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a { padding: 6px 12px; background: var(--sage-lt); border-radius: 20px; font-size: 12px; font-weight: 500; color: var(--sage-mid); transition: background .2s; }
.tag-cloud a:hover { background: var(--sage); color: #fff; }

/* ═══════════════════════════════════════════════════
   ARCHIVE WORKSPACE — katalog CPT
═══════════════════════════════════════════════════ */
.arc-ws-header { padding: 40px 40px 24px; background: var(--sage-pale); border-bottom: 1px solid var(--line); }
.arc-ws-title { font-family: var(--serif); font-size: 32px; color: var(--text); margin-bottom: 8px; }
.arc-ws-sub { font-size: 14px; color: var(--text-2); }
.arc-ws-sub strong { color: var(--sage); }
.combined-bar { background: var(--white); border-bottom: 1px solid var(--line); padding: 0 40px; display: flex; align-items: center; gap: 0; height: 50px; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
.combined-bar::-webkit-scrollbar { display: none; }
.cbar-tipe { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.cbar-chip { display: inline-flex; align-items: center; gap: 5px; padding: 6px 14px; border-radius: 20px; border: 1px solid var(--line); font-size: 12.5px; font-weight: 600; color: var(--text-2); background: transparent; cursor: pointer; white-space: nowrap; transition: all .15s; text-decoration: none; }
.cbar-chip:hover { color: var(--sage); border-color: var(--sage); }
.cbar-chip.active { background: var(--sage); border-color: var(--sage); color: #fff; }
.cbar-count { margin-left: auto; font-size: 12.5px; color: var(--text-3); white-space: nowrap; flex-shrink: 0; padding-left: 12px; }
.katalog-body { display: flex; align-items: flex-start; gap: 0; padding: 28px 40px 60px; }
.list-col { flex: 1; min-width: 0; }
.prop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.prop-card { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--white); text-decoration: none; color: inherit; transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.prop-card:hover { box-shadow: 0 12px 24px rgba(0,0,0,.06); transform: translateY(-4px); }
.prop-card-img { height: 180px; position: relative; overflow: hidden; background: var(--sage-lt); }
.prop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.prop-card:hover .prop-card-img img { transform: scale(1.05); }
.prop-card-badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 12px; font-size: 10px; font-weight: 700; background: var(--sage); color: #fff; letter-spacing: .5px; }
.prop-card-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.prop-card-tipe { font-size: 10.5px; font-weight: 700; color: var(--terra); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.prop-card-name { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.prop-card-loc { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-3); margin-bottom: 12px; }
.prop-card-loc svg { width: 12px; height: 12px; flex-shrink: 0; }
.prop-card-bottom { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.prop-card-price-label { font-size: 10px; color: var(--text-3); text-transform: uppercase; font-weight: 600; }
.prop-card-price { font-size: 16px; font-family: var(--serif); color: var(--sage); line-height: 1.1; margin-top: 2px; }

/* ═══════════════════════════════════════════════════
   SINGLE WORKSPACE — halaman detail
═══════════════════════════════════════════════════ */
.ws-wrap { max-width: 1400px; margin: 0 auto; padding: 32px 40px; display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.ws-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text-3); margin-bottom: 24px; }
.ws-breadcrumb a { color: var(--sage); font-weight: 500; }
.ws-breadcrumb a:hover { text-decoration: underline; }
.ws-breadcrumb svg { width: 14px; height: 14px; stroke: var(--text-3); }
.ws-header { margin-bottom: 24px; }
.ws-tipe-badge { display: inline-block; padding: 5px 12px; background: var(--terra-lt); color: var(--terra); font-size: 11.5px; font-weight: 700; border-radius: 6px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.ws-title { font-family: var(--serif); font-size: 32px; color: var(--text); line-height: 1.2; margin-bottom: 10px; }
.ws-loc-text { font-size: 14.5px; color: var(--text-2); display: flex; align-items: center; gap: 6px; }
.ws-loc-text svg { width: 16px; height: 16px; stroke: var(--text-3); }
.ws-hero-img { width: 100%; height: 420px; border-radius: var(--r-lg); overflow: hidden; margin-bottom: 32px; border: 1px solid var(--line); }
.ws-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.ws-section-title { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.ws-facilities { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.ws-fac-item { padding: 10px 18px; background: var(--sage-pale); border: 1px solid var(--sage-lt); border-radius: 8px; font-size: 13.5px; font-weight: 500; color: var(--text-2); display: flex; align-items: center; gap: 8px; }
.ws-fac-item svg { width: 16px; height: 16px; stroke: var(--sage-mid); fill: none; stroke-width: 2; }
.ws-content { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 40px; }
.ws-content p { margin-bottom: 16px; }
.ws-content h3 { font-size: 18px; color: var(--text); margin: 24px 0 12px; }
.ws-content ul { padding-left: 20px; margin-bottom: 16px; }
.ws-content li { margin-bottom: 8px; }
.ws-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.ws-booking-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: 0 12px 32px rgba(0,0,0,.04); }
.ws-price-wrap { margin-bottom: 24px; }
.ws-price-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.ws-price-row:last-child { border-bottom: none; }
.ws-price-label { font-size: 13px; color: var(--text-3); font-weight: 500; }
.ws-price-val { font-family: var(--serif); font-size: 20px; color: var(--sage); }
.btn-book { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; background: var(--terra); color: #fff; font-size: 15px; font-weight: 700; border-radius: var(--r); border: none; cursor: pointer; transition: background .15s; margin-bottom: 12px; text-decoration: none; }
.btn-book:hover { background: #A85A24; }
.btn-book svg { width: 18px; height: 18px; fill: currentColor; }
.btn-tour { display: block; width: 100%; padding: 12px; text-align: center; border: 1.5px solid var(--sage); border-radius: var(--r); background: transparent; color: var(--sage); font-size: 14px; font-weight: 700; cursor: pointer; transition: all .15s; text-decoration: none; }
.btn-tour:hover { background: var(--sage-lt); }
.ws-trust { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 16px; font-size: 12px; color: var(--text-3); }
.ws-trust svg { width: 14px; height: 14px; stroke: #10B981; }

/* ═══════════════════════════════════════════════════
   SINGLE BLOG POST
═══════════════════════════════════════════════════ */
.post-wrap { max-width: 800px; margin: 0 auto; padding: 48px 20px 80px; }
.post-cat { display: inline-block; padding: 6px 14px; background: var(--sage-lt); color: var(--sage); font-size: 11.5px; font-weight: 700; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.post-title { font-family: var(--serif); font-size: 42px; line-height: 1.15; color: var(--text); margin-bottom: 24px; text-align: center; }
.post-meta { display: flex; align-items: center; justify-content: center; gap: 16px; font-size: 13px; color: var(--text-3); margin-bottom: 40px; }
.post-meta img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.post-hero { width: 100%; border-radius: var(--r-lg); overflow: hidden; margin-bottom: 48px; }
.post-hero img { width: 100%; max-height: 480px; object-fit: cover; }
.post-content { font-size: 17px; line-height: 1.8; color: var(--text-2); }
.post-content p { margin-bottom: 24px; }
.post-content h2, .post-content h3 { font-family: var(--font); color: var(--text); margin: 40px 0 16px; line-height: 1.3; }
.post-content ul, .post-content ol { padding-left: 20px; margin-bottom: 24px; }
.post-content li { margin-bottom: 10px; }
.post-content img { border-radius: var(--r); margin: 24px 0; }
.post-content blockquote { border-left: 4px solid var(--sage); padding-left: 20px; font-style: italic; color: var(--sage-mid); font-size: 19px; margin: 32px 0; }
.post-footer { border-top: 1px solid var(--line); padding-top: 24px; margin-top: 48px; display: flex; align-items: center; justify-content: space-between; }
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.post-tags a { padding: 4px 10px; background: var(--sand); border-radius: 4px; font-size: 12px; color: var(--text-3); transition: background .2s; }
.post-tags a:hover { background: var(--sage-lt); color: var(--sage); }

/* ═══════════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════════ */
.page-numbers { display: inline-flex; align-items: center; justify-content: center; padding: 8px 14px; border: 1px solid var(--line); border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--text-2); transition: all .15s; }
.page-numbers:hover { border-color: var(--sage); color: var(--sage); }
.page-numbers.current { background: var(--sage); border-color: var(--sage); color: #fff; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE TAMBAHAN (archive & single)
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .blog-arc-wrap { grid-template-columns: 1fr; padding: 24px 16px; }
  .blog-row { grid-template-columns: 1fr; gap: 16px; }
  .blog-row-img { height: 200px; }
  .arc-ws-header { padding: 24px 16px; }
  .combined-bar { padding: 0 16px; }
  .katalog-body { padding: 20px 16px; }
  .ws-wrap { grid-template-columns: 1fr; padding: 24px 16px; }
  .ws-hero-img { height: 260px; }
  .ws-sidebar { position: static; margin-top: 24px; }
  .post-title { font-size: 32px; text-align: left; }
  .post-meta { justify-content: flex-start; }
  .post-content { font-size: 16px; }
}