/* ===============================================
   CSS VARIABLES & RESET
=============================================== */
:root {
  --cream:    #F5F0E8;
  --cream-dk: #EDE6D6;
  --brown:    #2C1810;
  --brown-md: #5C3D2E;
  --brown-lt: #8B5E3C;
  --gold:     #C9944A;
  --gold-lt:  #E8C07A;
  --sage:     #7C8C6E;
  --white:    #FEFCF8;
  --charcoal: #1A1208;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
  cursor: none;
  margin: 0;
  padding: 0;
}
}

/* -- CUSTOM CURSOR -- */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s var(--ease-out-expo);
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--brown-md);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.4s var(--ease-out-expo), width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor.hover { transform: scale(3); }
.cursor-ring.hover { width: 60px; height: 60px; border-color: var(--gold); }

/* -- NOISE TEXTURE OVERLAY -- */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1000; opacity: 0.4;
}

/* -- ANIMATIONS -- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal {
  opacity: 0; transform: translateY(48px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===============================================
   NAVBAR
=============================================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  width: 100%;
  margin: 0;
  padding: 1.25rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, #FFFDF8 0%, #F6EEDC 100%);
  border-bottom: 1px solid rgba(201,148,74,0.18);
  box-shadow: 0 10px 30px rgba(44,24,16,0.08);
  transition: padding 0.4s, box-shadow 0.4s;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 600;
  color: #24140D; text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: 0.85rem; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brown-md); text-decoration: none;
  position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out-expo);
}
.nav-links a:hover { color: var(--brown); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: #2C1810; color: #FDF9F1 !important;
  padding: 0.55rem 1.4rem; border-radius: 2px;
  transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--brown-md) !important; }
.nav-cta::after { display: none !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px; background: #3D271C;
  transition: 0.3s;
}

/* ===============================================
   HERO
=============================================== */
.hero {
  min-height: 100vh; position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 0; overflow: hidden;
}

.hero-left {
  background: var(--brown);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 6rem 4rem 5rem;
  position: relative; overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(201,148,74,0.2) 0%, transparent 60%);
}

.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
  animation: fadeIn 1s var(--ease-out-expo) 0.3s both;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300; line-height: 0.95;
  color: var(--cream); letter-spacing: -0.03em;
  animation: fadeUp 1.1s var(--ease-out-expo) 0.5s both;
}
.hero-headline em { font-style: italic; color: var(--gold-lt); }
.hero-headline strong {
  font-weight: 700; display: block;
}

.hero-desc {
  margin-top: 2rem; font-size: 0.95rem; line-height: 1.75;
  color: rgba(245,240,232,0.65); max-width: 380px; font-weight: 300;
  animation: fadeUp 1.1s var(--ease-out-expo) 0.7s both;
}

.hero-actions {
  display: flex; gap: 1rem; margin-top: 3rem; flex-wrap: wrap;
  animation: fadeUp 1.1s var(--ease-out-expo) 0.9s both;
}
.btn-primary-hero {
  background: var(--gold); color: var(--brown);
  padding: 0.9rem 2.2rem; font-size: 0.85rem; font-weight: 500;
  text-decoration: none; letter-spacing: 0.04em;
  transition: background 0.25s, transform 0.25s;
  border-radius: 2px;
}
.btn-primary-hero:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-ghost-hero {
  border: 1px solid rgba(245,240,232,0.3); color: var(--cream);
  padding: 0.9rem 2.2rem; font-size: 0.85rem; font-weight: 400;
  text-decoration: none; letter-spacing: 0.04em;
  transition: border-color 0.25s, background 0.25s;
  border-radius: 2px;
}
.btn-ghost-hero:hover { border-color: var(--gold); background: rgba(201,148,74,0.08); }

/* Hero stats strip */
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 4rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(245,240,232,0.12);
  animation: fadeUp 1.1s var(--ease-out-expo) 1.1s both;
}
.hero-stat-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 600;
  color: var(--cream); line-height: 1;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245,240,232,0.45); margin-top: 0.35rem;
}

/* Hero right: image grid collage */
.hero-right {
  position: relative; overflow: hidden;
  background: var(--cream-dk);
}

.hero-img-grid {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 55% 45%;
  grid-template-rows: 60% 40%;
  gap: 3px;
}

.hero-img-cell {
  overflow: hidden; position: relative;
}

.hero-img-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s ease;
}
.hero-img-cell:hover img { transform: scale(1.05); }

/* Label mengambang di atas grid */
.hero-float-badge {
  position: absolute; z-index: 10;
  background: var(--white); border-radius: 4px;
  padding: 0.8rem 1.2rem;
  box-shadow: 0 8px 32px rgba(44,24,16,0.15);
  animation: floatY 4s ease-in-out infinite;
}
.hero-float-badge.badge-arsitek {
  bottom: 28%; left: -5%; animation-delay: 0s;
}
.hero-float-badge.badge-rating {
  top: 18%; right: 5%; animation-delay: 1.5s;
}
.hero-float-badge .badge-label {
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brown-lt); font-weight: 500;
}
.hero-float-badge .badge-val {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--brown); line-height: 1.1; margin-top: 2px;
}
.badge-stars { color: var(--gold); font-size: 0.75rem; }

/* Overlay dark gradient pada hero-right */
.hero-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,24,16,0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* ===============================================
   MARQUEE STRIP
=============================================== */
.marquee-strip {
  background: var(--gold); padding: 0.9rem 0;
  overflow: hidden; white-space: nowrap;
}
.marquee-inner {
  display: inline-flex; animation: marquee 22s linear infinite;
}
.marquee-item {
  font-family: var(--font-display); font-size: 1rem; font-weight: 400;
  color: var(--brown); letter-spacing: 0.05em;
  padding: 0 2rem; font-style: italic;
}
.marquee-dot {
  color: var(--brown-md); font-style: normal;
}

/* ===============================================
   SECTION HEADER PATTERN
=============================================== */
.section-wrap { padding: 7rem 3rem; max-width: 1280px; margin: 0 auto; }
.section-wrap.full { max-width: 100%; padding-left: 4rem; padding-right: 4rem; }

.section-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1.2rem;
}
.section-tag::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--brown);
}
.section-title em { font-style: italic; color: var(--brown-lt); }
.section-title strong { font-weight: 700; }

.section-subtitle {
  font-size: 1rem; color: var(--brown-lt); line-height: 1.75;
  font-weight: 300; max-width: 480px; margin-top: 1.2rem;
}

/* ===============================================
   LAYANAN CARDS - 4 kolom mosaic
=============================================== */
.services-bg { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  margin-top: 4rem;
}

.svc-card {
  position: relative; overflow: hidden;
  padding: 3rem 2.2rem;
  background: #FFFDF8; cursor: pointer;
  transition: background 0.4s;
  min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end;
}

.svc-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 0;
  background: var(--brown);
  transition: height 0.5s var(--ease-out-expo);
  z-index: 0;
}
.svc-card:hover::before { height: 100%; }

.svc-card > * { position: relative; z-index: 1; }

.svc-number {
  font-family: var(--font-display);
  font-size: 5rem; font-weight: 700; line-height: 1;
  color: rgba(44,24,16,0.07);
  position: absolute; top: 1.5rem; right: 1.5rem;
  transition: color 0.4s;
}
.svc-card:hover .svc-number { color: rgba(245,240,232,0.06); }

.svc-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.8rem; transition: background 0.4s, transform 0.4s;
}
.svc-card:hover .svc-icon { background: var(--gold-lt); transform: scale(1.1); }
.svc-icon svg { width: 24px; height: 24px; fill: var(--brown); }

.svc-name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600; line-height: 1.2;
  color: var(--brown); margin-bottom: 0.8rem;
  transition: color 0.4s;
}
.svc-card:hover .svc-name { color: var(--cream); }

.svc-desc {
  font-size: 0.85rem; line-height: 1.7; color: var(--brown-lt);
  font-weight: 300; transition: color 0.4s;
}
.svc-card:hover .svc-desc { color: rgba(245,240,232,0.65); }

.svc-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500; text-decoration: none;
  color: var(--gold); margin-top: 1.8rem;
  transition: gap 0.3s, color 0.4s;
}
.svc-card:hover .svc-link { color: var(--gold-lt); gap: 0.9rem; }
.svc-link svg { width: 16px; height: 16px; fill: currentColor; }

/* ===============================================
   FEATURED PRODUK DESAIN
=============================================== */
.featured-bg { background: var(--cream); }

.featured-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1rem;
}

.featured-link {
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #5A3D2D; text-decoration: none; font-weight: 500;
  display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid var(--brown-md);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.featured-link:hover { color: var(--gold); border-color: var(--gold); }
.featured-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.design-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 380px;
  max-width: 560px;
}

.design-search-field {
  flex: 1;
  display: block;
}

.design-search-input {
  width: 100%;
  border: 1px solid var(--cream-dk);
  background: var(--white);
  color: var(--brown);
  border-radius: 999px;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.design-search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 148, 74, 0.12);
}

.design-search-btn,
.btn-load-more {
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  background: var(--brown);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out-expo), background 0.25s, opacity 0.25s;
}

.design-search-btn:hover,
.btn-load-more:hover {
  transform: translateY(-2px);
  background: var(--brown-md);
}

.design-search-btn:disabled,
.btn-load-more:disabled {
  cursor: wait;
  opacity: 0.72;
}

.design-controls {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.design-sort-wrap {
  display: flex;
}

.design-sort-select {
  border: 1px solid var(--cream-dk);
  background: var(--white);
  color: var(--brown);
  border-radius: 999px;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
  min-width: 200px;
}

.design-sort-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 148, 74, 0.12);
}


.design-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.design-chip,
.design-reset {
  border: 1px solid var(--cream-dk);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brown-md);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.design-chip:hover,
.design-reset:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
  color: var(--brown);
}

.design-chip.is-active {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
}

.featured-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.design-count {
  font-size: 0.92rem;
  color: var(--brown-md);
}

.featured-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.design-loading,
.design-empty {
  font-size: 0.9rem;
  color: var(--brown-md);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Horizontal scroll cards */
.featured-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.prod-card {
  background: var(--white);
  border-radius: 4px; overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}
.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(44,24,16,0.12);
}

.prod-img {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
  background: var(--cream-dk);
}
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.prod-card:hover .prod-img img { transform: scale(1.06); }

.prod-badge {
  position: absolute; top: 0.9rem; left: 0.9rem;
  background: var(--brown); color: var(--cream);
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 2px; font-weight: 500;
}
.prod-badge.new { background: var(--gold); color: var(--brown); }

.prod-body { padding: 1.4rem 1.4rem 1.6rem; }

.prod-cat {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 0.4rem;
}
.prod-name {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--brown); line-height: 1.3; margin-bottom: 0.6rem;
}
.prod-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1rem; padding-top: 0.8rem;
  border-top: 1px solid var(--cream-dk);
}
.prod-price {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--brown);
}
.prod-rating {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.78rem; color: var(--brown-md);
}
.prod-rating svg { width: 14px; height: 14px; fill: var(--gold); }

/* Arsitek mini profile */
.prod-arsitek {
  display: flex; align-items: center; gap: 0.6rem; margin-top: 0.6rem;
}
.arsitek-avatar {
  width: 24px; height: 24px; border-radius: 50%; overflow: hidden;
  background: var(--cream-dk); border: 1.5px solid var(--gold);
}
.arsitek-avatar img { width: 100%; height: 100%; object-fit: cover; }
.arsitek-name {
  font-size: 0.75rem; color: var(--brown-lt); font-weight: 400;
}

/* ===============================================
   TUKANG & MATERIAL - Split layout
=============================================== */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
}

.split-dark {
  background: var(--brown); padding: 6rem 4rem;
  position: relative; overflow: hidden;
}
.split-dark::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,148,74,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.split-light {
  background: var(--cream-dk); padding: 6rem 4rem;
}

.tukang-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1px; }

.tukang-item {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.2rem 1.5rem; background: rgba(245,240,232,0.05);
  cursor: pointer;
  transition: background 0.3s;
  border-left: 2px solid transparent;
  transition: all 0.3s;
}
.tukang-item:hover {
  background: rgba(201,148,74,0.1);
  border-left-color: var(--gold);
}

.tukang-ico {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,148,74,0.15); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.tukang-ico svg { width: 20px; height: 20px; fill: var(--gold); }

.tukang-label {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  color: var(--cream); line-height: 1.2;
}
.tukang-sub { font-size: 0.78rem; color: rgba(245,240,232,0.45); margin-top: 2px; }

.tukang-price {
  margin-left: auto; font-size: 0.8rem; font-weight: 500;
  color: var(--gold); white-space: nowrap;
}

/* Material cards */
.material-grid {
  margin-top: 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem;
}
.mat-card {
  background: var(--white); border-radius: 4px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.mat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(44,24,16,0.1); }
.mat-img {
  aspect-ratio: 4/3; overflow: hidden;
  background: #FFFDF8;
}
.mat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.mat-card:hover .mat-img img { transform: scale(1.05); }
.mat-body { padding: 1rem 1.1rem 1.2rem; }
.mat-cat { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); font-weight: 500; }
.mat-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--brown); margin-top: 0.2rem; }
.mat-price { font-size: 0.85rem; font-weight: 500; color: var(--brown-lt); margin-top: 0.4rem; }

/* ===============================================
   KONSULTASI CTA BANNER
=============================================== */
.konsultasi-banner {
  background: var(--brown);
  position: relative; overflow: hidden;
}
.konsultasi-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 7rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.konsultasi-banner::before {
  content: '';
  position: absolute; bottom: -150px; left: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(201,148,74,0.15);
}
.konsultasi-banner::after {
  content: '';
  position: absolute; top: -80px; right: 30%;
  width: 300px; height: 300px; border-radius: 50%;
  border: 1px solid rgba(201,148,74,0.08);
}
.konsultasi-text .section-tag { color: var(--gold-lt); }
.konsultasi-text .section-tag::before { background: var(--gold-lt); }
.konsultasi-text .section-title { color: var(--cream); }
.konsultasi-text .section-title em { color: var(--gold-lt); }
.konsultasi-desc {
  font-size: 0.95rem; line-height: 1.75; color: rgba(245,240,232,0.6);
  font-weight: 300; margin-top: 1.2rem;
}

.konsultasi-cards {
  display: flex; flex-direction: column; gap: 1rem; position: relative; z-index: 1;
}
.konsul-card {
  background: rgba(245,240,232,0.05);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: 4px; padding: 1.5rem 1.8rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.3s, border-color 0.3s;
  cursor: pointer;
}
.konsul-card:hover {
  background: rgba(201,148,74,0.1);
  border-color: rgba(201,148,74,0.3);
}
.konsul-name {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--cream);
}
.konsul-sub { font-size: 0.78rem; color: rgba(245,240,232,0.45); margin-top: 3px; }
.konsul-price {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--gold);
}
.konsul-per { font-size: 0.72rem; color: rgba(245,240,232,0.4); display: block; text-align: right; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--gold); color: var(--brown); text-decoration: none;
  padding: 1rem 2.5rem; border-radius: 2px;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em;
  margin-top: 2.5rem; transition: background 0.25s, transform 0.25s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-gold svg { width: 18px; height: 18px; fill: currentColor; }

/* ===============================================
   BLOG / ARTIKEL SEO
=============================================== */
.blog-bg { background: var(--white); }

.blog-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.5rem;
  margin-top: 3.5rem;
}

.blog-featured {
  background: #FFFDF8; border-radius: 4px; overflow: hidden;
  cursor: pointer; transition: box-shadow 0.4s;
}
.blog-featured:hover { box-shadow: 0 20px 60px rgba(44,24,16,0.12); }

.blog-feat-img {
  aspect-ratio: 16/10; overflow: hidden;
}
.blog-feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.blog-featured:hover .blog-feat-img img { transform: scale(1.04); }

.blog-feat-body { padding: 2rem; }
.blog-cat {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 0.7rem;
}
.blog-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--brown); line-height: 1.3;
}
.blog-excerpt { font-size: 0.87rem; line-height: 1.7; color: var(--brown-lt); margin-top: 0.8rem; font-weight: 300; }
.blog-meta { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; font-size: 0.75rem; color: rgba(44,24,16,0.4); }
.blog-meta span { display: flex; align-items: center; gap: 0.3rem; }
.blog-meta svg { width: 12px; height: 12px; fill: currentColor; }

.blog-side { display: flex; flex-direction: column; gap: 1.2rem; }

.blog-mini {
  display: flex; gap: 1rem; cursor: pointer;
  padding: 1rem; background: var(--cream); border-radius: 4px;
  transition: background 0.3s;
}
.blog-mini:hover { background: var(--cream-dk); }
.blog-mini-img {
  width: 84px; height: 72px; border-radius: 3px; overflow: hidden; flex-shrink: 0;
  background: var(--cream-dk);
}
.blog-mini-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-mini-cat { font-size: 0.63rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.blog-mini-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--brown); line-height: 1.3; margin-top: 0.2rem; }
.blog-mini-date { font-size: 0.7rem; color: rgba(44,24,16,0.4); margin-top: 0.4rem; }

/* ===============================================
   TRUST / KENAPA IDEHUNIAN
=============================================== */
.trust-bg { background: var(--cream-dk); }

.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid rgba(44,24,16,0.1); margin-top: 4rem;
}
.trust-item {
  padding: 2.5rem 2rem; border-right: 1px solid rgba(44,24,16,0.1);
  text-align: center;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  transition: background 0.3s;
}
.trust-item:hover .trust-icon { background: var(--gold); }
.trust-icon svg { width: 24px; height: 24px; fill: var(--gold); transition: fill 0.3s; }
.trust-item:hover .trust-icon svg { fill: var(--brown); }
.trust-title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--brown); margin-bottom: 0.6rem;
}
.trust-desc { font-size: 0.82rem; color: var(--brown-lt); line-height: 1.65; font-weight: 300; }

/* ===============================================
   ARSITEK UNGGULAN
=============================================== */
.arsitek-bg { background: var(--cream); }

.arsitek-scroll {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem;
  margin-top: 3.5rem;
}

.arsitek-card {
  text-align: center; cursor: pointer;
  transition: transform 0.3s;
}
.arsitek-card:hover { transform: translateY(-6px); }
.arsitek-photo {
  aspect-ratio: 3/4; border-radius: 4px; overflow: hidden;
  background: var(--cream-dk); margin-bottom: 1rem;
  position: relative;
}
.arsitek-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.arsitek-card:hover .arsitek-photo img { transform: scale(1.06); }
.arsitek-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,24,16,0.7) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 1rem;
}
.arsitek-card:hover .arsitek-photo-overlay { opacity: 1; }
.arsitek-cta-mini {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.arsitek-name {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--brown);
}
.arsitek-spec { font-size: 0.75rem; color: var(--brown-lt); margin-top: 0.2rem; }
.arsitek-rating { font-size: 0.75rem; color: var(--gold); margin-top: 0.3rem; }

/* ===============================================
   TESTIMONI
=============================================== */
.testi-bg { background: var(--brown); }
.testi-bg .section-tag { color: var(--gold); }
.testi-bg .section-tag::before { background: var(--gold); }
.testi-bg .section-title { color: var(--cream); }

.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3.5rem;
}
.testi-card {
  background: rgba(245,240,232,0.05); border: 1px solid rgba(245,240,232,0.1);
  border-radius: 4px; padding: 2rem 2rem 1.8rem;
  transition: background 0.3s;
}
.testi-card:hover { background: rgba(245,240,232,0.09); }
.testi-quote {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 300; font-style: italic;
  color: rgba(245,240,232,0.85); line-height: 1.75;
  quotes: '\201C' '\201D';
}
.testi-quote::before { content: open-quote; color: var(--gold); font-size: 2rem; line-height: 0; vertical-align: -0.4em; margin-right: 0.2rem; }
.testi-footer { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.5rem; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; overflow: hidden;
  background: var(--brown-md); border: 2px solid var(--gold);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 0.87rem; font-weight: 500; color: var(--cream); }
.testi-role { font-size: 0.72rem; color: rgba(245,240,232,0.4); }
.testi-stars { font-size: 0.75rem; color: var(--gold); margin-left: auto; }

/* ===============================================
   MITRA SECTION
=============================================== */
.mitra-bg { background: var(--cream-dk); }
.mitra-logos {
  display: flex; gap: 3rem; margin-top: 2.5rem;
  align-items: center; flex-wrap: wrap; justify-content: center;
}
.mitra-logo {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: rgba(44,24,16,0.18); letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.3s; cursor: default;
}
.mitra-logo:hover { color: rgba(44,24,16,0.45); }

/* ===============================================
   FOOTER
=============================================== */
footer {
  background: var(--charcoal); padding: 5rem 3rem 2.5rem;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 4rem; border-bottom: 1px solid rgba(245,240,232,0.08);
}
.footer-brand-name {
  font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  color: var(--cream); letter-spacing: -0.02em; margin-bottom: 1rem;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline { font-size: 0.87rem; color: rgba(245,240,232,0.4); line-height: 1.7; font-weight: 300; max-width: 280px; }
.footer-socials { display: flex; gap: 0.8rem; margin-top: 1.8rem; }
.social-btn {
  width: 36px; height: 36px; border: 1px solid rgba(245,240,232,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: border-color 0.3s, background 0.3s;
}
.social-btn:hover { border-color: var(--gold); background: rgba(201,148,74,0.1); }
.social-btn svg { width: 16px; height: 16px; fill: rgba(245,240,232,0.5); }
.social-btn:hover svg { fill: var(--gold); }

.footer-col-title {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1.5rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
  font-size: 0.87rem; color: rgba(245,240,232,0.45); text-decoration: none;
  transition: color 0.2s; font-weight: 300;
}
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(245,240,232,0.2); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(245,240,232,0.2); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(245,240,232,0.5); }

/* ===============================================
   BACK TO TOP
=============================================== */
.back-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 400;
  width: 44px; height: 44px; background: var(--gold); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  border: none; text-decoration: none;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top svg { width: 18px; height: 18px; fill: var(--brown); }

/* ===============================================
   PLACEHOLDER IMAGES (gradient art)
=============================================== */
.ph-rumah1 { background: linear-gradient(135deg, #8B7355 0%, #5C3D2E 60%, #3D2415 100%); }
.ph-rumah2 { background: linear-gradient(135deg, #A0956B 0%, #6B5741 60%, #2C1810 100%); }
.ph-villa  { background: linear-gradient(135deg, #C9944A 0%, #8B5E3C 50%, #2C1810 100%); }
.ph-kantor { background: linear-gradient(135deg, #7C8C6E 0%, #5C3D2E 60%, #1A1208 100%); }
.ph-semen  { background: linear-gradient(135deg, #B0A898 0%, #8B7355 60%, #5C3D2E 100%); }
.ph-keramik{ background: linear-gradient(135deg, #E8C07A 0%, #C9944A 50%, #8B5E3C 100%); }
.ph-cat    { background: linear-gradient(135deg, #9B5A5A 0%, #6B3D3D 60%, #3D1515 100%); }
.ph-lampu  { background: linear-gradient(135deg, #D4B896 0%, #A0956B 50%, #5C3D2E 100%); }
.ph-blog1  { background: linear-gradient(135deg, #5C7A6E 0%, #2C4A3E 60%, #1A2C26 100%); }
.ph-blog2  { background: linear-gradient(135deg, #7A5C6E 0%, #4A2C3E 60%, #2C1A26 100%); }
.ph-blog3  { background: linear-gradient(135deg, #7A6E5C 0%, #4A3E2C 60%, #2C261A 100%); }
.ph-a1     { background: linear-gradient(180deg, #8B7355 0%, #5C3D2E 100%); }
.ph-a2     { background: linear-gradient(180deg, #7C8C6E 0%, #3D4E32 100%); }
.ph-a3     { background: linear-gradient(180deg, #A0956B 0%, #5C5232 100%); }
.ph-a4     { background: linear-gradient(180deg, #9B5A5A 0%, #5C2C2C 100%); }
.ph-a5     { background: linear-gradient(180deg, #C9944A 0%, #8B5E1A 100%); }
.ph-hero1  { background: linear-gradient(160deg, #8B7355 0%, #3D2415 100%); }
.ph-hero2  { background: linear-gradient(160deg, #C9944A 0%, #5C3D2E 100%); }
.ph-hero3  { background: linear-gradient(160deg, #7C8C6E 0%, #2C1810 100%); }
.ph-testi  { background: linear-gradient(135deg, #C9944A 0%, #8B5E3C 100%); }

/* ===============================================
   RESPONSIVE
=============================================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { min-height: 100vh; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-scroll { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-side { grid-template-columns: 1fr 1fr; display: grid; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .arsitek-scroll { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .konsultasi-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .featured-toolbar { flex-direction: column; align-items: stretch; }
  .design-search { max-width: 100%; }
  .design-filter-chips { justify-content: flex-start; }
  .featured-meta { align-items: flex-start; flex-direction: column; }
  .design-controls { width: 100%; align-items: stretch; }
  .design-sort-wrap { width: 100%; }
  .design-sort-select { width: 100%; min-width: 0; }

  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.7rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section-wrap { padding: 5rem 1.5rem; }
  .hero-left { padding: 5.5rem 1.5rem 4rem; }
  .hero-stats { gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1.5px; }
  .featured-scroll { grid-template-columns: 1fr; }
  .material-grid { grid-template-columns: 1fr 1fr; }
  .split-dark, .split-light { padding: 4rem 1.5rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(44,24,16,0.1); padding: 2rem 1.5rem; }
  .arsitek-scroll { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-side { grid-template-columns: 1fr; display: flex; }
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  .konsultasi-inner { padding: 4rem 1.5rem; }
}













