:root {
  --bg: #fff8e7;
  --text: #1a1a1a;
  --dark: #1a1a1a;
  --light: #ffffff;
  --accent: #f05a22;
  --muted: #5b5146;
  --radius-xl: 28px;
  --radius-xxl: 42px;
  --shadow-soft: 0 20px 60px rgba(26, 26, 26, 0.12);
  --shadow-card: 0 12px 30px rgba(26, 26, 26, 0.08);
  --max-width: 1200px;
  --nav-panel-bg: rgba(255, 248, 231, 0.98);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

img {
  width: 100%;
  display: block;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  margin: 0 auto;
  max-width: calc(var(--max-width) + 40px);
  background: rgba(255, 248, 231, 0.92);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.brand {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.brand.logo {
  width: clamp(120px, 14vw, 150px);
  height: auto;
  max-height: 64px;
  display: block;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 14px;
  font-weight: 600;
  justify-content: center;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
}

.nav a:hover {
  background: rgba(240, 90, 34, 0.12);
  color: var(--text);
}

.actions {
  display: flex;
  gap: 12px;
}

.btn {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--light);
  box-shadow: 0 14px 30px rgba(240, 90, 34, 0.26);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(240, 90, 34, 0.3);
}

.btn-ghost {
  background: rgba(240, 90, 34, 0.12);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(240, 90, 34, 0.2);
}

.btn.full {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  text-align: center;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  margin-top: 32px;
}

.hero-text h1 {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  margin: 12px 0 16px;
  line-height: 1.1;
}

.hero-text .lede {
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 22px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 12px;
  color: var(--accent);
  margin: 0;
}

.eyebrow.invert {
  color: #f7d9c9;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.stat-card {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.stat-label {
  color: var(--muted);
  font-size: 14px;
}

.hero-icons {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.hero-icon-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(26, 26, 26, 0.04);
  border-radius: var(--radius-xl);
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: var(--shadow-card);
}

.hero-icon-card:hover {
  background: rgba(240, 90, 34, 0.12);
  transform: translateY(-1px);
}

.hero-icon-card .icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
}

.hero-visual {
  position: relative;
}

.photo-shell {
  position: relative;
  padding: 18px;
  background: linear-gradient(145deg, rgba(240, 90, 34, 0.1), rgba(255, 248, 231, 0.8));
  border-radius: var(--radius-xxl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  min-height: 480px;
}

.photo-shell img {
  border-radius: var(--radius-xxl);
  height: clamp(260px, 52vw, 420px);
  object-fit: cover;
}

.blur-blob {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.7;
}

.blob-1 {
  background: rgba(240, 90, 34, 0.6);
  top: 10%;
  left: -5%;
}

.blob-2 {
  background: rgba(26, 26, 26, 0.4);
  bottom: 2%;
  right: -8%;
}

.features {
  margin: 56px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 8px;
  align-content: start;
}

.akses {
  margin: 12px 0 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.akses-card {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 8px;
}

.akses-card h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.akses-card p {
  margin: 0;
  color: var(--muted);
}

.action {
  background: rgba(240, 90, 34, 0.14);
  border: 1px solid rgba(240, 90, 34, 0.28);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(240, 90, 34, 0.12);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.feature-title {
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.feature-text {
  margin: 0;
  color: var(--muted);
}

.wave {
  margin: 32px -24px -4px;
}

.wave svg {
  width: 100%;
  height: auto;
  display: block;
}

.about {
  background: #f96909;
  color: var(--light);
  border-radius: var(--radius-xxl);
  padding: 56px 32px;
  box-shadow: var(--shadow-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.about h2 {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  margin: 10px 0 12px;
  font-size: clamp(26px, 4vw, 36px);
}

.about .body-text {
  color: #e7e0d8;
}

.pill-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 600;
}

.about-card {
  background: #ffb983;
  color: var(--dark);
  /* Tambahkan warna teks gelap jika perlu, agar kontras dengan background cerah */
  border-radius: var(--radius-xl);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 12px;
}

.about-meta {
  display: grid;
  gap: 4px;
}

.meta-label {
  color: #c44f00;
  /* Warna lebih gelap agar kontras dengan #ffb983 */
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.meta-value {
  margin: 0;
  font-weight: 700;
  color: #1a1a1a;
  /* Teks nilai juga dijadikan gelap */
}

.menu {
  margin: 72px 0 64px;
}

.menu-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.menu h2 {
  margin: 8px 0 0;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(240, 90, 34, 0.12);
  color: var(--text);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.filter-btn.active {
  background: var(--accent);
  color: var(--light);
  box-shadow: 0 10px 24px rgba(240, 90, 34, 0.26);
}

.menu-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.menu-card {
  background: var(--light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.menu-card img {
  height: 170px;
}

.menu-info {
  padding: 16px;
  display: grid;
  gap: 8px;
}

.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.menu-top h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.price {
  color: var(--accent);
  font-weight: 800;
}

.note {
  margin: 0;
  color: var(--muted);
}

.load-more-box {
  background: var(--light);
  border: 1px solid rgba(249, 105, 9, 0.25);
  color: #c44f00;
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(249, 105, 9, 0.1);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 340px;
}

.load-more-box:hover {
  background: #f96909;
  color: var(--light);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(249, 105, 9, 0.25);
}

.fasilitas {
  margin: 16px 0 56px;
}

.section-head {
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 8px 0 0;
  font-family: 'Poppins', 'Montserrat', sans-serif;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.facility-card {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.facility-card h3 {
  margin: 0 0 6px;
  font-family: 'Poppins', sans-serif;
}

.facility-card p {
  margin: 0;
  color: var(--muted);
}

.ulasan {
  margin: 12px 0 56px;
}

.ulasan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.ulasan-card {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 8px;
}

.quote {
  margin: 0;
  font-weight: 600;
}

.author {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.agenda {
  margin: 12px 0 56px;
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.agenda-card {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 8px;
}

.agenda-card h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.agenda-card p {
  margin: 0;
  color: var(--muted);
}

.small {
  padding: 6px 12px;
  background: rgba(26, 26, 26, 0.06);
  border: 1px solid rgba(26, 26, 26, 0.08);
  color: var(--text);
  font-weight: 700;
}

.tour {
  margin: 18px 0 64px;
}

.tour-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  background: linear-gradient(135deg, rgba(240, 90, 34, 0.08), rgba(26, 26, 26, 0.08));
  border-radius: var(--radius-xxl);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.tour-text h2 {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  margin: 8px 0 12px;
}

.tour-text .lede {
  margin: 0 0 12px;
  color: var(--muted);
}

.tour-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.tour-card {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26, 26, 26, 0.06);
  display: grid;
  gap: 6px;
}

.tour-card .meta-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: var(--muted);
}

.tour-card .meta-value {
  font-weight: 800;
  margin: 0 0 4px;
}

.contact {
  margin: 48px 0 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.contact-card,
.map-card {
  background: var(--light);
  border-radius: var(--radius-xxl);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

label {
  font-weight: 700;
}

input,
textarea {
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: var(--radius-xl);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.9);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(240, 90, 34, 0.3);
  border-color: rgba(240, 90, 34, 0.4);
}

.map-card {
  display: grid;
  gap: 12px;
}

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini {
  padding: 8px 12px;
  background: rgba(240, 90, 34, 0.12);
  border: 1px solid rgba(240, 90, 34, 0.22);
  color: var(--text);
}

.map-visual {
  position: relative;
  height: 260px;
  border-radius: var(--radius-xxl);
  background: radial-gradient(circle at 30% 30%, rgba(240, 90, 34, 0.16), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(26, 26, 26, 0.2), transparent 50%),
    #f3e7d6;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.08);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(26, 26, 26, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(26, 26, 26, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-marker {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--light);
  font-weight: 800;
  top: 48%;
  left: 52%;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 24px rgba(240, 90, 34, 0.25);
}

.map-marker.subtle {
  background: rgba(26, 26, 26, 0.78);
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(26, 26, 26, 0.22);
}

.map-meta {
  color: var(--muted);
  font-weight: 600;
}

.footer {
  background: var(--dark);
  color: var(--light);
  border-radius: var(--radius-xxl) var(--radius-xxl) 0 0;
  padding: 32px 24px 28px;
  margin-top: 48px;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer .brand {
  color: var(--light);
}

.footer-text {
  color: #d9d2c9;
}

.tiny {
  text-align: center;
  color: #b7afa5;
  margin: 0;
  font-size: 13px;
}

/* Responsive rules moved to responsive.css */