:root {
  --bg: #f7f2ea;
  --card: #fff7ef;
  --ink: #1f1a16;
  --muted: #6f6157;
  --accent: #6b3b2a;
  --accent-2: #c07a4a;
  --accent-3: #2f6b4f;
  --border: rgba(31, 26, 22, 0.12);
  --shadow: 0 30px 60px rgba(31, 26, 22, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(47, 107, 79, 0.14), transparent 46%),
    radial-gradient(circle at 88% 8%, rgba(192, 122, 74, 0.2), transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(31, 26, 22, 0.06), transparent 45%),
    radial-gradient(circle at top, #fff7ee 0%, #f7f2ea 55%, #efe5d8 100%),
    repeating-linear-gradient(135deg, rgba(31, 26, 22, 0.02) 0, rgba(31, 26, 22, 0.02) 2px, transparent 2px, transparent 14px);
  line-height: 1.6;
}

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

h1, h2, h3, h4 {
  font-family: "Fraunces", serif;
  line-height: 1.15;
}

.muted { color: var(--muted); }
.meta-title { font-size: 0.8rem; color: var(--muted); display: block; }
.meta-value { font-weight: 600; }

.site-hero {
  padding: 24px 6vw;
  background: linear-gradient(145deg, rgba(192, 122, 74, 0.18), rgba(107, 59, 42, 0.08));
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(6px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 6px;
  border: 1px solid var(--border);
}

.brand-name {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.brand-tag {
  font-size: 0.82rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(107, 59, 42, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.btn-ghost {
  background: rgba(192, 122, 74, 0.15);
  color: var(--accent);
  box-shadow: none;
}

.btn-full { width: 100%; }

.section { padding: 80px 6vw; }

.hero {
  padding: 40px 6vw 90px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.7;
  animation: float 10s ease-in-out infinite;
}
.blob-1 {
  width: 220px;
  height: 220px;
  background: rgba(47, 107, 79, 0.2);
  top: 10%;
  left: -40px;
}
.blob-2 {
  width: 260px;
  height: 260px;
  background: rgba(192, 122, 74, 0.25);
  top: 5%;
  right: -60px;
  animation-delay: -3s;
}
.blob-3 {
  width: 180px;
  height: 180px;
  background: rgba(31, 26, 22, 0.12);
  bottom: 5%;
  right: 25%;
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-12px) translateX(8px); }
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4.3vw, 3.7rem);
  margin-bottom: 16px;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(31, 26, 22, 0.12);
  margin-bottom: 16px;
}

.logo-badge img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.badge-tag {
  font-size: 0.85rem;
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--accent-3);
  margin-bottom: 12px;
  display: inline-block;
}

.lead { color: var(--muted); margin-bottom: 22px; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  background: var(--card);
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.highlight-value { font-weight: 700; color: var(--accent); display: block; }
.highlight-label { font-size: 0.85rem; color: var(--muted); }

.hero-visual {
  display: grid;
  gap: 20px;
  position: relative;
}

.hero-spotlight {
  display: grid;
  gap: 8px;
}

.spotlight-card {
  background: #fff;
  border-radius: 26px;
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.spotlight-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-top: 8px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}

.hero-tags span {
  background: rgba(47, 107, 79, 0.12);
  color: var(--accent-3);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero-frames {
  position: absolute;
  right: -4px;
  bottom: -6px;
  display: grid;
  gap: 8px;
  pointer-events: none;
}

.frame {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, rgba(192, 122, 74, 0.2), rgba(47, 107, 79, 0.15));
  backdrop-filter: blur(6px);
  box-shadow: 0 16px 30px rgba(31, 26, 22, 0.15);
}

.frame-large { width: 170px; height: 110px; }
.frame-small { width: 130px; height: 80px; margin-left: 14px; }

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

.story-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 26px;
  border-radius: 22px;
}

.checklist {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.checklist li {
  padding-left: 20px;
  position: relative;
}

.checklist li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--accent-3);
  font-weight: 700;
}

.section-title {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-title.align-left {
  text-align: left;
  margin: 0 0 30px;
}

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

.gallery-slider {
  position: relative;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.75), rgba(192, 122, 74, 0.08));
  border-radius: 28px;
  padding: 24px 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 6px 20px;
}

.gallery-track::-webkit-scrollbar { height: 8px; }
.gallery-track::-webkit-scrollbar-thumb {
  background: rgba(47, 107, 79, 0.3);
  border-radius: 999px;
}

.gallery-slide {
  scroll-snap-align: start;
  background: var(--card);
  border-radius: 22px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: grid;
  gap: 12px;
}

.gallery-frame {
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.gallery-photo {
  height: clamp(220px, 38vw, 300px);
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.gallery-info { padding: 0 18px 18px; }

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid var(--border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(31, 26, 22, 0.15);
}

.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }

.gallery-hint {
  text-align: center;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.reserve-cta { padding-top: 20px; }

.reserve-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  background: var(--card);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.page-hero { padding-top: 40px; padding-bottom: 40px; }


.reservation-flow { background: #f1e7dc; }
.reservation-form { background: transparent; display: grid; gap: 20px; }
.step-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  display: grid;
  gap: 18px;
}
.step-block.is-hidden { display: none; }
.step-head { display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: center; }
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(47, 107, 79, 0.15);
  color: var(--accent-3);
  font-weight: 700;
}

.date-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.date-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.date-card:hover { transform: translateY(-2px); border-color: rgba(47, 107, 79, 0.4); }
.date-card.is-selected { border-color: var(--accent-3); box-shadow: 0 10px 24px rgba(47, 107, 79, 0.2); }
.date-card.is-full { opacity: 0.55; cursor: not-allowed; }

.pill {
  background: rgba(47, 107, 79, 0.15);
  color: var(--accent-3);
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 999px;
}

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

label { font-size: 0.9rem; color: var(--muted); }
input, select, textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 26, 22, 0.2);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
}

.alert-box {
  background: rgba(184, 88, 88, 0.15);
  padding: 12px 16px;
  border-radius: 12px;
  color: #8c3e3e;
  margin-bottom: 16px;
}

.pax-warning {
  display: none;
  font-size: 0.9rem;
  color: #b23b3b;
}

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

.contact-card {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 16px;
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.contact-panel {
  background: linear-gradient(145deg, rgba(47, 107, 79, 0.12), rgba(192, 122, 74, 0.08));
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--border);
}

.contact-map { margin-top: 16px; }
.map-embed {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(31, 26, 22, 0.12);
}

.map-embed iframe {
  width: 100%;
  height: 240px;
  border: 0;
}

.map-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent-3);
  font-weight: 600;
}

.contact-form-section { background: #f1e7dc; }
.form-wrapper { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); align-items: center; }
.contact-form {
  background: var(--card);
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--border);
  display: grid;
  gap: 14px;
}

.menu-section { }
.menu-book {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(192, 122, 74, 0.08));
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.menu-book-head {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}
.menu-book-nav {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
}
.menu-page-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--accent);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(31, 26, 22, 0.12);
  z-index: 2;
  position: relative;
}
.menu-page-meta {
  display: grid;
  gap: 4px;
  text-align: center;
}
.menu-page-title {
  font-weight: 700;
  font-size: 1rem;
}
.menu-page-count {
  font-size: 0.85rem;
  color: var(--muted);
}
.menu-page-hint {
  font-size: 0.85rem;
  color: var(--muted);
}
.menu-book-body {
  position: relative;
  perspective: 1200px;
}
.menu-page {
  display: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 24px 48px rgba(31, 26, 22, 0.14);
  transform-origin: left center;
}
.menu-page.active {
  display: grid;
  gap: 16px;
  animation: pageFlip 0.45s ease;
}
.menu-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.menu-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@keyframes pageFlip {
  0% { opacity: 0; transform: rotateY(-6deg) translateX(-12px); }
  100% { opacity: 1; transform: rotateY(0deg) translateX(0); }
}

@media (max-width: 720px) {
  .menu-grid-2 {
    grid-template-columns: 1fr;
  }
}

.menu-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  gap: 10px;
  box-shadow: 0 16px 30px rgba(31, 26, 22, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-photo {
  aspect-ratio: 4 / 3;
  width: 100%;
  background-size: contain;
  background-position: center;
  background: #f3ede5;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.menu-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.menu-photo-fallback {
  background: linear-gradient(140deg, rgba(192, 122, 74, 0.25), rgba(47, 107, 79, 0.15));
}
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(31, 26, 22, 0.16);
}
.menu-info { padding: 16px; }
.menu-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 6px 0 10px;
}
.menu-order-info .menu-desc {
  display: block;
  font-size: 0.86rem;
  margin: 6px 0 0;
  color: #3a2419;
  font-weight: 700;
  letter-spacing: 0.1px;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}
.menu-card-text {
  background: linear-gradient(160deg, #fff, rgba(192, 122, 74, 0.08));
}
.menu-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(47, 107, 79, 0.12);
  color: var(--accent-3);
}
.menu-star {
  color: #d08b2d;
  font-size: 0.95em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  transform: translateY(-1px);
}

.menu-order {
  margin-top: 18px;
  display: grid;
  gap: 18px;
}
.menu-order-group h5 { margin-bottom: 10px; }
.menu-order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.menu-order-card {
  background: linear-gradient(170deg, #ffffff, rgba(192, 122, 74, 0.06));
  border: 1px solid rgba(31, 26, 22, 0.08);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 10px;
  box-shadow: 0 10px 22px rgba(31, 26, 22, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.menu-order-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(31, 26, 22, 0.12);
}
.menu-order-text {
  background: linear-gradient(160deg, #fff, rgba(47, 107, 79, 0.06));
}
.menu-order-info { display: grid; gap: 6px; }
.menu-order-info strong { font-size: 1rem; }
.menu-order-info span { color: var(--muted); font-size: 0.85rem; }
.menu-order-info .menu-star { margin-left: 4px; }
.menu-order-card input[type="number"] {
  width: 100%;
  height: 40px;
  border-radius: 12px;
}

.radio-group {
  display: grid;
  gap: 8px;
}

.menu-order-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.menu-order-tab {
  border: 1px solid rgba(31, 26, 22, 0.12);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.82rem;
}
.menu-order-tab.active {
  background: rgba(47, 107, 79, 0.15);
  color: var(--accent-3);
  border-color: rgba(47, 107, 79, 0.3);
}
.menu-order-panel { display: none; }
.menu-order-panel.active { display: block; }

.menu-summary {
  background: linear-gradient(160deg, #fff, rgba(47, 107, 79, 0.05));
  border: 1px solid rgba(31, 26, 22, 0.1);
  border-radius: 18px;
  padding: 16px 18px;
  display: grid;
  gap: 10px;
}
.menu-summary ul {
  list-style: none;
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 0;
}
.summary-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}
.summary-name { color: var(--ink); }
.summary-qty { color: var(--accent-3); }
.summary-total { color: var(--accent); font-weight: 700; }
.summary-grand {
  background: rgba(47, 107, 79, 0.08);
  border: 1px dashed rgba(47, 107, 79, 0.35);
}
.summary-note {
  font-size: 0.85rem;
  padding-left: 4px;
}
.summary-remove {
  border: none;
  background: rgba(184, 88, 88, 0.12);
  color: #a64646;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.menu-group-title {
  margin: 24px 0 12px;
}

.events-hero {
  background: linear-gradient(140deg, rgba(47, 107, 79, 0.12), rgba(192, 122, 74, 0.1));
  border-bottom: 1px solid var(--border);
}
.events-hero-inner {
  max-width: 720px;
}
.events-section {
  display: grid;
  gap: 30px;
  position: relative;
  z-index: 1;
  min-height: 40vh;
}
.events-section > * {
  position: relative;
  z-index: 2;
}
.events-section::before,
.events-section::after {
  content: "";
  position: absolute;
  inset: auto;
  z-index: 0;
}
.events-section::before {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(47, 107, 79, 0.12);
  top: -40px;
  right: 8%;
  filter: blur(10px);
}
.events-section::after {
  width: 200px;
  height: 200px;
  border-radius: 30% 70% 50% 50%;
  background: rgba(192, 122, 74, 0.16);
  bottom: -60px;
  left: 6%;
  filter: blur(12px);
}
.events-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.filter-label {
  font-weight: 600;
  color: var(--muted);
}
.events-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.event-chip {
  background: rgba(47, 107, 79, 0.12);
  color: var(--accent-3);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
.events-group {
  display: grid;
  gap: 16px;
}
.events-group-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.events-grid-stagger .event-card-alt {
  transform: none;
}
.event-card {
  background: linear-gradient(160deg, #fff, rgba(192, 122, 74, 0.08));
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 36px rgba(31, 26, 22, 0.12);
  display: grid;
  position: relative;
}
.event-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 16px auto;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(47, 107, 79, 0.18), rgba(192, 122, 74, 0.2));
  opacity: 0.6;
  pointer-events: none;
}
.event-media {
  background: #f2ebe2;
}
.event-media {
  padding: 10px;
}
.event-media video {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(31, 26, 22, 0.12);
}

@media (min-width: 900px) {
  .event-media video {
    max-height: 360px;
  }
}
.event-media-empty {
  padding: 40px 20px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}
.event-body {
  padding: 18px;
  display: grid;
  gap: 8px;
}

.events-photo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: end;
}
.events-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
}
.event-photo-frame {
  background: #fff;
  border-radius: 18px;
  border: 3px solid #fff;
  box-shadow: 0 20px 36px rgba(31, 26, 22, 0.18);
  padding: 12px 12px 18px;
  transform: rotate(-2deg);
}
.event-photo-frame:nth-child(2n) { transform: rotate(1.5deg); }
.event-photo-frame:nth-child(3n) { transform: rotate(-3deg); }
.event-photo-frame img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.event-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.event-tag {
  background: rgba(192, 122, 74, 0.15);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .events-grid-stagger .event-card-alt {
    transform: none;
  }
  .events-section::before,
  .events-section::after {
    display: none;
  }
}


.social-contact {
  background: var(--card);
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--border);
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.social-button {
  width: min(320px, 100%);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 16px 30px rgba(31, 26, 22, 0.18);
}

.social-button.wa {
  background: rgba(47, 107, 79, 0.15);
  color: #1f5c3f;
  border-color: rgba(47, 107, 79, 0.3);
}

.social-button.ig {
  background: rgba(192, 122, 74, 0.15);
  color: #8a4a22;
  border-color: rgba(192, 122, 74, 0.3);
}

.social-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.empty-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px dashed var(--border);
  border-radius: 18px;
  padding: 20px;
}

.confirmation {
  min-height: 60vh;
  display: grid;
  place-items: center;
}

.confirmation-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(192, 122, 74, 0.08));
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 38px;
  text-align: center;
  max-width: 520px;
  box-shadow: 0 24px 48px rgba(31, 26, 22, 0.18);
}

.success-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  background: rgba(47, 107, 79, 0.15);
  color: var(--accent-3);
  font-weight: 700;
  font-size: 1.4rem;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.confirmation-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  background: #1d120c;
  color: #f7efe6;
  padding: 50px 6vw 30px;
}
.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 20px;
}
.footer-note { color: rgba(247, 239, 230, 0.6); font-size: 0.85rem; }

/* Admin styles */
.admin-body {
  background:
    radial-gradient(circle at 12% 6%, rgba(47, 107, 79, 0.12), transparent 45%),
    radial-gradient(circle at 88% 0%, rgba(192, 122, 74, 0.18), transparent 50%),
    linear-gradient(180deg, #f7efe6 0%, #f1e7db 100%);
  margin: 0;
}
.admin-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; align-items: stretch; }
.admin-sidebar {
  background: linear-gradient(180deg, #1b120d 0%, #24170f 100%);
  color: #f7efe6;
  padding: 28px 24px;
  display: grid;
  gap: 26px;
  position: sticky;
  top: 0;
  height: 100vh;
  align-self: stretch;
  box-shadow: 16px 0 40px rgba(0, 0, 0, 0.18);
}
.admin-sidebar .brand {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-sidebar nav { display: grid; gap: 10px; }
.admin-sidebar a {
  color: #f7efe6;
  opacity: 0.82;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.admin-sidebar a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.admin-main { padding: 34px; }

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.admin-header h1 { font-size: 2rem; }
.admin-header p { color: var(--muted); }

.admin-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; margin-bottom: 30px; }
.admin-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 22px;
  box-shadow: 0 18px 36px rgba(31, 26, 22, 0.12);
  position: relative;
  overflow: hidden;
}
.admin-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(192, 122, 74, 0.08), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}
.admin-card span { font-size: 1.8rem; font-weight: 700; color: var(--accent); display: block; }
.card-sub { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }

.admin-table {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 32px rgba(31, 26, 22, 0.1);
  margin-bottom: 20px;
}
.admin-table h2 { margin-bottom: 12px; }
.admin-table table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 12px; border-bottom: 1px solid var(--border); text-align: left; font-size: 0.9rem; }
.admin-table th { color: var(--muted); font-weight: 600; }

.order-pill {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(47, 107, 79, 0.06));
  border: 1px solid rgba(47, 107, 79, 0.2);
  border-radius: 14px;
  padding: 8px 12px;
  line-height: 1.45;
  max-width: 340px;
  color: #1f3f32;
  font-size: 0.88rem;
}

.order-more {
  margin-left: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(47, 107, 79, 0.12);
  color: var(--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

.receipt-card {
  max-width: 520px;
  text-align: left;
}
.receipt-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.receipt-meta { color: var(--muted); font-size: 0.9rem; }
.receipt-body {
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 12px;
}
.receipt-section h4 {
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--accent-dark);
}
.receipt-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.receipt-section li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.9rem;
}
.status { padding: 4px 10px; border-radius: 999px; font-size: 0.75rem; text-transform: capitalize; }
.status-baru { background: rgba(192, 122, 74, 0.18); color: var(--accent); }
.status-approved { background: rgba(47, 107, 79, 0.22); color: #1e5a3f; }
.status-cancel { background: rgba(184, 88, 88, 0.2); color: #a64646; }

.admin-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.stack { display: grid; gap: 12px; }
.mini-list { display: grid; gap: 14px; }
.inline-form { display: flex; gap: 8px; align-items: center; }
.list-row { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.inline-edit { margin: 12px 0 18px; padding: 14px; border-radius: 16px; border: 1px dashed var(--border); background: #fff; }

.list-row-gallery {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 12px;
}

.gallery-row-main {
  display: flex;
  gap: 12px;
  align-items: center;
}

.gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.wa-link {
  color: var(--accent-3);
  font-weight: 600;
  text-decoration: none;
}

.admin-filters {
  margin-bottom: 18px;
}

.filter-bar {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  align-items: end;
}

.filter-bar .btn {
  justify-self: start;
}

.admin-table table tr:hover td {
  background: rgba(192, 122, 74, 0.06);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 26, 22, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}

.modal-overlay.is-open { display: flex; }

.modal-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 22px;
  width: min(420px, 90vw);
  box-shadow: 0 24px 48px rgba(31, 26, 22, 0.2);
  text-align: center;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.admin-card-highlight {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(192, 122, 74, 0.08));
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
}

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

.capacity-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 16px;
  display: grid;
  gap: 12px;
}

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

.capacity-top span {
  font-size: 0.9rem;
  color: var(--muted);
}

.capacity-badge {
  background: rgba(47, 107, 79, 0.15);
  color: var(--accent-3);
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.capacity-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(47, 107, 79, 0.1);
  overflow: hidden;
}

.capacity-bar div {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-3), #7acfa5);
}


.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.checkbox span {
  font-size: 0.85rem;
  color: var(--muted);
}

.admin-login { min-height: 100vh; display: grid; place-items: center; }
.admin-login {
  position: relative;
  overflow: hidden;
}
.admin-login-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(192, 122, 74, 0.08));
  padding: 32px;
  border-radius: 26px;
  border: 1px solid var(--border);
  width: min(460px, 92vw);
  box-shadow: 0 26px 52px rgba(31, 26, 22, 0.18);
  text-align: left;
  position: relative;
  z-index: 2;
}
.admin-login-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.admin-login-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  padding: 6px;
  border: 1px solid var(--border);
}
.admin-login-form { display: grid; gap: 14px; }
.login-note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}
.admin-login-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(192, 122, 74, 0.22), transparent 65%);
  top: -140px;
  right: -140px;
  z-index: 1;
}
.alert { background: rgba(184, 88, 88, 0.2); padding: 10px; border-radius: 10px; color: #a64646; margin-bottom: 12px; }

.fade-up { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px;
    right: 6vw;
    background: var(--card);
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    grid-auto-flow: column;
    overflow: auto;
  }
}

@media (max-width: 640px) {
  .reserve-box { flex-direction: column; align-items: flex-start; }
  .admin-header { flex-direction: column; align-items: flex-start; }
  .hero-frames { display: none; }
  .gallery-nav { display: none; }
}

@media (max-width: 720px) {
  .section {
    padding: 60px 6vw;
  }
  .site-hero {
    padding: 16px 6vw;
  }
  .brand-logo {
    width: 40px;
    height: 40px;
  }
  .brand-name {
    font-size: 1rem;
  }
  .brand-tag {
    font-size: 0.75rem;
  }
  .site-hero .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  .site-nav.open .nav-links {
    left: 6vw;
    right: 6vw;
  }
  .hero {
    padding: 32px 6vw 60px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-highlights {
    grid-template-columns: 1fr;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .gallery-slider {
    padding: 18px 12px;
  }
  .gallery-photo {
    height: 200px;
  }
  .reserve-box {
    padding: 22px;
  }
  .menu-book {
    padding: 18px;
  }
  .menu-book-nav {
    grid-template-columns: 40px 1fr 40px;
  }
  .menu-page {
    padding: 16px;
    border-radius: 18px;
  }
  .menu-grid-2 {
    grid-template-columns: 1fr;
  }
  .menu-order-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .menu-order-tab {
    white-space: nowrap;
  }
  .menu-order-grid {
    grid-template-columns: 1fr;
  }
  .menu-summary {
    gap: 8px;
  }
  .summary-row {
    grid-template-columns: 1fr auto auto;
  }
  .summary-remove {
    justify-self: end;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }
  .map-embed iframe {
    height: 200px;
  }
  .confirmation-card {
    padding: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .events-hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }
  .events-hero .lead {
    font-size: 0.95rem;
  }
  .events-photo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .event-photo-frame {
    padding: 8px;
    border-radius: 14px;
    transform: none;
  }
  .event-photo-frame img {
    height: 140px;
  }
  .events-group-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .event-media {
    padding: 8px;
  }
  .event-card {
    border-radius: 18px;
  }
  .event-body {
    padding: 14px;
  }
}
