:root {
  --clay: #a9714a;
  --clay-dark: #8a5a38;
  --clay-deep: #6e4429;
  --cream: #f6ede1;
  --ink: #1c1712;
  --sand: #e9d9c2;
  --gold: #d98c3f;
  --white: #ffffff;
}

.theme h1,
.theme h2,
.theme h3,
.section-head h2 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.theme,
.theme p,
.theme a {
  font-family: "Manrope", sans-serif;
}

/* Eyebrow / section-head pattern, shared across all pages */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
}
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head .eyebrow {
  color: var(--clay);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--clay);
}
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-top: 0.7rem;
}

/* Buttons */
.btn-theme-primary {
  background: var(--gold);
  color: var(--ink);
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
  display: inline-block;
}
.btn-theme-primary:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn-theme-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  background: transparent;
  cursor: pointer;
  transition: 0.2s ease;
  display: inline-block;
}
.btn-theme-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.btn-theme-solid {
  background: var(--clay);
  color: var(--white);
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
  display: inline-block;
}
.btn-theme-solid:hover {
  background: var(--clay-dark);
  color: var(--white);
}

/* Card hover convention */
.theme-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #eee2d3;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.theme-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -18px rgba(110, 68, 41, 0.35);
}
.theme-card .theme-card-img {
  overflow: hidden;
}
.theme-card .theme-card-img img {
  transition: transform 0.5s ease;
}
.theme-card:hover .theme-card-img img {
  transform: scale(1.08);
}

/* Nav (translucent fixed header) */
.theme-navbar {
  background: rgba(17, 13, 10, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.theme-navbar .theme-logo {
  font-family: "Krona One", serif;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 560px) {
  .theme-navbar .theme-logo {
    font-size: 0.95rem;
  }
}
.theme-navbar .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 600;
}
.theme-navbar .nav-link.active,
.theme-navbar .nav-link:hover {
  color: var(--gold) !important;
}
.theme-nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}
.theme-nav-cta:hover {
  background: #f0a35c;
  color: var(--ink) !important;
}

/* Footer */
.theme-footer {
  background: #150f0a;
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem clamp(1.2rem, 6vw, 4.5rem) 1.6rem;
}
.theme-footer h5,
.theme-footer h4 {
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.theme-footer p,
.theme-footer a {
  color: rgba(255, 255, 255, 0.75);
}
.theme-footer .footer-logo {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  color: var(--white);
}
.theme-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.theme-footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.5rem;
}
.theme-footer .footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85) !important;
  transition: 0.2s ease;
}
.theme-footer .footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink) !important;
}
.theme-footer .footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .theme-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

/* Sticky promo bar */
.theme-sticky-bar {
  background: var(--clay-deep);
  color: var(--cream);
}
.theme-sticky-bar p {
  color: var(--cream);
  margin: 0;
}

/* Section shell helpers */
.theme-section {
  padding: 5.5rem clamp(1.2rem, 6vw, 4.5rem);
}
.theme-section-cream {
  background: var(--cream);
}
.theme-section-clay {
  background: var(--clay);
  color: var(--cream);
}
.theme-section-clay-deep {
  background: var(--clay-deep);
  color: var(--cream);
}

/* Scoped prose typography for rich-text blocks ({!! !!} content) */
.theme-prose {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  line-height: 1.7;
}
.theme-prose h1,
.theme-prose h2,
.theme-prose h3 {
  font-family: "Fraunces", serif;
  color: var(--clay-deep);
}

/* Product detail page — scoped overrides only, existing .header-container/.content-cover structure kept as-is */
.theme.product-detail .title h1,
.theme.product-detail .subheader-container h1 {
  font-family: "Fraunces", serif;
  color: var(--clay-deep);
}
.theme.product-detail p {
  font-family: "Manrope", sans-serif;
}

/* ===== Our Best Unit (tabbed cluster filter) ===== */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}
.tab {
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--sand);
  background: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--clay-deep);
  transition: 0.2s ease;
}
.tab.active {
  background: var(--clay);
  color: var(--white);
  border-color: var(--clay);
}
.unit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1180px;
  margin: 0 auto;
}
.unit-card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #eee2d3;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
}
.unit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -18px rgba(110, 68, 41, 0.35);
}
.unit-img {
  height: 200px;
  overflow: hidden;
}
.unit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.unit-card:hover .unit-img img {
  transform: scale(1.08);
}
.unit-body {
  padding: 1.2rem 1.3rem 1.5rem;
}
.unit-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-family: "Fraunces", serif;
}
.unit-body .from {
  font-size: 0.78rem;
  color: #9a8873;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.unit-body .price {
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  color: var(--clay-deep);
  font-weight: 600;
}

@media (max-width: 900px) {
  .unit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .unit-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== About (clay bg, two-column grid + stats row) ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.about-grid h1,
.about-grid h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
}
.about-grid .eyebrow {
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.about-grid .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.about-text p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.1rem;
}
.about-stats {
  display: flex;
  gap: 2.4rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}
.about-stats div {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 1rem;
}
.about-stats b {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  display: block;
  color: var(--white);
}
.about-stats span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Fasilitas Kawasan & Lokasi Strategis (static card grids) ===== */
.fas-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 1180px;
  margin: 0 auto;
}
.fas-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #eee2d3;
}
.fas-card .fas-card-img {
  height: 180px;
  overflow: hidden;
}
.fas-card .fas-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fas-card .fas-card-body {
  padding: 1rem 1.1rem;
}
.fas-card .fas-card-body h4 {
  font-size: 1rem;
  margin: 0 0 0.2rem;
  color: var(--ink);
  font-family: "Fraunces", serif;
}
.fas-card .fas-card-body span {
  font-size: 0.8rem;
  color: #9a8873;
}

@media (max-width: 900px) {
  .fas-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .fas-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Testimoni ===== */
.testi-slider {
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 3rem;
}
.testi-slider .swiper-slide {
  height: auto;
}
.testi-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 2rem 1.7rem;
  position: relative;
  height: 100%;
}
.testi-card .quote-mark {
  font-family: "Fraunces", serif;
  font-size: 3rem;
  color: var(--clay);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.testi-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a3d30;
  margin-bottom: 1.4rem;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testi-person .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  background: var(--clay);
}
.testi-person .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testi-person b {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
}
.testi-person span {
  font-size: 0.78rem;
  color: #8a7a68;
}

.testi-slider .swiper-pagination-bullet {
  background: var(--clay);
  opacity: 0.35;
}
.testi-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--clay);
}

/* ===== Kunjungi Cluster (replaces contact form/map) ===== */
.visit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #eee2d3;
  box-shadow: 0 30px 60px -30px rgba(110, 68, 41, 0.25);
}
.visit-img {
  position: relative;
  min-height: 320px;
}
.visit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.visit-badge-360 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clay), var(--clay-deep));
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.4);
}
.visit-badge-360 strong {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  line-height: 1;
}
.visit-badge-360 span {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.visit-info {
  padding: 2.6rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.visit-info h3 {
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.visit-info .visit-address {
  font-size: 0.95rem;
  color: #4a3d30;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.visit-info .visit-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--clay);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
}
.visit-info .visit-maps-link:hover {
  color: var(--clay-dark);
}
.visit-info .visit-hours-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a8873;
  margin-bottom: 0.3rem;
}
.visit-info .visit-hours {
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  color: var(--clay-deep);
  margin-bottom: 1.6rem;
}

@media (max-width: 900px) {
  .visit-card {
    grid-template-columns: 1fr;
  }
  .visit-img {
    min-height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .theme *,
  .theme-card,
  .unit-card,
  .btn-theme-primary,
  .btn-theme-outline,
  .btn-theme-solid {
    transition: none !important;
    animation: none !important;
  }
}
