  :root {
    --pink-light: #FDF0F4;
    --pink-mid: #F4C0D1;
    --pink-dark: #D4537E;
    --pink-deep: #72243E;
    --cream: #FAF7F2;
    --gold: #C8A96E;
    --gold-light: #F5ECD8;
    --text-dark: #2C1A24;
    --text-mid: #7A4E62;
    --text-light: #B08898;
    --white: #FFFFFF;
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 64px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 83, 126, 0.12);
  }

  .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
  }

  .navbar-brand span {
    color: var(--pink-dark);
  }

  .navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .navbar-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.15s;
  }

  .navbar-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
  }

  .btn-kontak {
    background: var(--pink-dark);
    color: white;
  }

  .btn-maps {
    background: var(--gold-light);
    color: var(--gold);
    border: 1px solid #E0C990;
  }

  .hero {
    background-image: url('hero.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 60px;
    position: relative;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(44, 26, 36, 0.329) 0%, rgba(44, 26, 36, 0.29) 60%, rgba(114, 36, 62, 0.313) 100%);
  }

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

  .badge {
    display: inline-block;
    background: rgba(245, 236, 216, 0.2);
    color: #F5ECD8;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(200, 169, 110, 0.5);
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
  }

  h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
  }

  h1 span {
    color: var(--pink-mid);
  }

  .hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 300;
    max-width: 445px;
    line-height: 1.7;
    margin-bottom: 48px;
  }

  .nav-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
  }

  .nav-btn:hover {
    transform: translateY(-3px);
  }

  .btn-fasilitas {
    background: var(--pink-dark);
    color: white;
    box-shadow: 0 8px 24px rgba(212, 83, 126, 0.32);
  }

  .btn-jarak {
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-dark);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }

  .btn-harga {
    background: var(--gold);
    color: white;
    box-shadow: 0 8px 24px rgba(200, 169, 110, 0.45);
  }

  .btn-icon {
    font-size: 18px;
  }

  section {
    padding: 64px 24px;
    max-width: 900px;
    margin: 0 auto;
    scroll-margin-top: 72px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
  }

  .section-sub {
    color: var(--text-mid);
    font-size: 15px;
    margin-bottom: 40px;
    font-weight: 300;
  }

  .fasilitas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
  }

  .fasilitas-card {
    background: white;
    border: 1px solid #F0DCE6;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .fasilitas-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 83, 126, 0.1);
  }

  .fasilitas-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
  }

  .fasilitas-name {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
  }

  .jarak-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .jarak-item {
    background: white;
    border: 1px solid #F0DCE6;
    border-radius: 14px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s;
    width: 100%;
  }

  .jarak-item>div:nth-child(2) {
    flex: 1;
    min-width: 0;
  }

  .jarak-km {
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--pink-dark);
    min-width: 80px;
  }

  .jarak-item:hover {
    transform: translateX(4px);
  }

  .jarak-icon {
    font-size: 22px;
    width: 44px;
    height: 44px;
    background: var(--pink-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .jarak-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease;
  }

  .jarak-item-link:hover .jarak-item {
    background-color: var(--pink-light);
    transform: translateY(-2px);
    border: 1px solid var(--pink-mid);
  }

  .jarak-item-link:hover .jarak-km {
    color: var(--pink-dark);
    font-weight: bold;
  }

  .jarak-name {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
  }

  .jarak-dist {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 2px;
  }

  .jarak-km {
    margin-left: auto;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--pink-dark);
  }

  .harga-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }

  .harga-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #F0DCE6;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    background: white;
  }

  .harga-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  }

  .harga-card.featured {
    border-color: var(--pink-dark);
    box-shadow: 0 12px 40px rgba(212, 83, 126, 0.18);
  }

  .harga-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
  }

  .harga-img-placeholder {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    flex-shrink: 0;
  }

  .harga-popular-badge {
    background: var(--pink-dark);
    color: white;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 0;
    text-align: center;
    letter-spacing: 0.5px;
  }

  .harga-body {
    padding: 24px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .harga-type {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
  }

  .harga-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
  }

  .harga-price {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--pink-dark);
  }

  .harga-period {
    font-size: 13px;
    color: var(--text-light);
  }

  .harga-features {
    list-style: none;
    margin-top: 16px;
    text-align: left;
    flex: 1;
  }

  .harga-features li {
    font-size: 13px;
    color: var(--text-mid);
    padding: 6px 0;
    border-bottom: 1px solid #FAF0F4;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .harga-features li::before {
    content: '✓';
    color: var(--pink-dark);
    font-weight: 600;
    flex-shrink: 0;
  }

  .reviews-section {
    background: linear-gradient(160deg, #FBE9F0 0%, #FDF5E8 100%);
    padding: 64px 24px;
  }

  .reviews-inner {
    max-width: 900px;
    margin: 0 auto;
  }

  .reviews-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .google-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 16px;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }

  .review-card {
    background: white;
    border: 1px solid #F0DCE6;
    border-radius: 20px;
    padding: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  }

  .review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }

  .review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--pink-dark);
    flex-shrink: 0;
  }

  .review-name {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
  }

  .review-date {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
  }

  .review-stars {
    color: #F5B418;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .review-text {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
    font-style: italic;
  }

  footer {
    background: var(--text-dark);
    color: #C0A0B0;
    text-align: center;
    padding: 40px 24px;
    font-size: 14px;
  }

  footer strong {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    display: block;
    margin-bottom: 8px;
  }

  .galeri-wrapper {
    max-width: 900px;
    margin: 30px auto 0;
    padding: 0 24px;
  }

  .galeri-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 6px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
  }

  .galeri-grid .g-main {
    grid-row: 1 / 3;
    position: relative;
    overflow: hidden;
  }

  .galeri-grid .g-side {
    position: relative;
    overflow: hidden;
  }

  .galeri-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
  }

  .galeri-grid .g-main:hover img,
  .galeri-grid .g-side:hover img {
    transform: scale(1.04);
  }

  .galeri-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--text-dark);
    font-size: 10px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: 10;
  }

  .galeri-btn:hover {
    background: #ffffff;
    transform: scale(1.02);
  }

  .g-side:last-child::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
  }

  .lb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.88);
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .lb-overlay.active {
    display: flex;
  }

  .lb-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 860px;
    padding: 0 60px;
  }

  .lb-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 10px;
    object-fit: contain;
    display: block;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  }

  .lb-close {
    position: fixed;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: white;
    font-size: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    z-index: 1001;
  }

  .lb-close:hover {
    background: rgba(255, 255, 255, 0.22);
  }

  .lb-arrow-down {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
  }

  .lb-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
  }

  .lb-arrow.prev {
    left: 8px;
  }

  .lb-arrow.next {
    right: 8px;
  }

  .lb-caption {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-top: 14px;
    text-align: center;
  }

  .lb-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding: 0 16px;
    overflow-x: auto;
    max-width: 860px;
  }

  .lb-thumbs::-webkit-scrollbar {
    height: 4px;
  }

  .lb-thumbs::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
  }

  .lb-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.5;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: opacity 0.15s, border-color 0.15s;
  }

  .lb-thumb.active,
  .lb-thumb:hover {
    opacity: 1;
    border-color: var(--pink-dark);
  }

  @media (max-width: 600px) {
    .navbar {
      padding: 0 16px;
    }

    .navbar-brand {
      font-size: 16px;
    }

    .navbar-btn .label {
      display: none;
    }

    .navbar-btn {
      padding: 9px 12px;
    }

    .nav-btn {
      padding: 13px 18px;
      font-size: 14px;
    }

    .harga-grid {
      grid-template-columns: 1fr;
    }

    .fasilitas-grid {
      grid-template-columns: 1fr 1fr;
    }

    .galeri-grid {
      grid-template-rows: 160px 160px;
    }

    .lb-main {
      padding: 0 48px;
    }

    .galeri-btn {
      font-size: 10px;
      padding: 8px 8px;
      bottom: 6px;
      right: 6px;
    }
  }

  .warn-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(44, 26, 36, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .warn-overlay.warn-visible {
    opacity: 1;
  }

  .warn-overlay.warn-hiding {
    opacity: 0;
  }

  .warn-close {
    position: fixed;
    top: calc(50% - 200px - 28px);
    left: calc(50% + 172px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--text-dark);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transition: background 0.2s, transform 0.2s;
    z-index: 10000;
  }

  .warn-close:hover {
    background: #fff;
    transform: scale(1.1) rotate(90deg);
    color: var(--pink-dark);
  }

  .warn-box {
    background: #fff;
    border-radius: 24px;
    padding: 40px 36px 32px;
    max-width: 400px;
    width: calc(100% - 48px);
    box-shadow: 0 24px 80px rgba(44, 26, 36, 0.28);
    text-align: center;
    position: relative;
    transform: translateY(28px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .warn-overlay.warn-visible .warn-box {
    transform: translateY(0) scale(1);
  }

  .warn-icon {
    font-size: 44px;
    margin-bottom: 14px;
    display: block;
    animation: warn-shake 0.6s ease 0.45s both;
  }

  @keyframes warn-shake {

    0%,
    100% {
      transform: rotate(0deg);
    }

    20% {
      transform: rotate(-10deg);
    }

    40% {
      transform: rotate(10deg);
    }

    60% {
      transform: rotate(-6deg);
    }

    80% {
      transform: rotate(6deg);
    }
  }

  .warn-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
  }

  .warn-msg {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.75;
  }

  .warn-msg strong {
    color: var(--pink-dark);
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    background: var(--pink-light);
    padding: 2px 10px;
    border-radius: 8px;
    margin-top: 4px;
  }

  .warn-thanks {
    margin-top: 20px;
    font-size: 15px;
    color: var(--text-light);
  }

  @media (max-width: 480px) {
    .warn-close {
      top: calc(50% - 230px - 24px);
      left: calc(50% + 120px);
    }

    .warn-box {
      padding: 32px 22px 26px;
    }

    .warn-title {
      font-size: 18px;
    }
  }
