/* ========================
   DAPUR NUSANTARA
   Aesthetic: Warm Homey / Rustic Editorial
======================== */

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

:root {
  --cream: #fdf6ee;
  --cream-dark: #f5e9d8;
  --warm-white: #fffdf9;
  --terracotta: #c4622d;
  --terra-dark: #a34f22;
  --terra-light: #e8905a;
  --terra-pale: #f5d5bf;
  --green: #3a5c3a;
  --green-light: #5a8a5a;
  --text-dark: #1e1206;
  --text-mid: #5c3d1e;
  --text-light: #9a7a5a;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: rgba(253,246,238,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196,98,45,0.12);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
}

.nav-logo span {
  color: var(--terracotta);
  font-style: italic;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

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

.nav-cta {
  text-decoration: none;
  background: var(--terracotta);
  color: white;
  padding: 11px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover { background: var(--terra-dark); transform: translateY(-1px); }

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
}

.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: slowzoom 20s ease-in-out infinite alternate;
}

@keyframes slowzoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(30,18,6,0.78) 0%,
    rgba(30,18,6,0.45) 55%,
    rgba(30,18,6,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 0 60px;
  margin-top: -20px;
  animation: fadeup 1s ease both;
}

@keyframes fadeup {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: rgba(196,98,45,0.25);
  border: 1px solid rgba(232,144,90,0.5);
  color: var(--terra-light);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 20px;
}

.hero-content h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--terra-light);
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(253,246,238,0.75);
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  text-decoration: none;
  background: var(--terracotta);
  color: white;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover { background: var(--terra-dark); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  text-decoration: none;
  border: 1px solid rgba(253,246,238,0.4);
  color: var(--cream);
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 30px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--terra-light);
  color: var(--terra-light);
}

.hero-cards {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card {
  background: rgba(253,246,238,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(253,246,238,0.2);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
}

.hero-card span { font-size: 1.3rem; flex-shrink: 0; }

.hero-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-card p {
  font-size: 0.75rem;
  color: rgba(253,246,238,0.65);
  margin: 0;
}

/* ---- STRIP ---- */
.strip {
  background: var(--terracotta);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}

.strip-inner {
  display: inline-block;
  animation: marquee 22s linear infinite;
}

.strip-inner span {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin: 0 16px;
  letter-spacing: 0.5px;
}

.strip-inner .dot {
  color: rgba(255,255,255,0.4);
  margin: 0 6px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- MENU ---- */
.menu {
  background: var(--cream);
  padding: 96px 60px;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 40px;
  flex-wrap: wrap;
}

.menu-header-left {}

.section-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 12px;
}

.menu-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.1;
}

.menu-note {
  max-width: 340px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-light);
  text-align: right;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 48px;
}

.menu-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(196,98,45,0.08);
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(196,98,45,0.12);
}

.menu-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.menu-card.featured .menu-img { height: 100%; min-height: 300px; }
.menu-card:not(.featured) .menu-img { height: 200px; }

.menu-img {
  position: relative;
  overflow: hidden;
}

.menu-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.menu-card:hover .menu-img img { transform: scale(1.05); }

.menu-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--terracotta);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.menu-badge.new {
  background: var(--green);
}

.menu-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.menu-info p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 16px;
}

.menu-foot {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.menu-foot strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--terracotta);
}

.menu-foot span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.menu-cta { text-align: center; }

/* ---- CERITA ---- */
.cerita {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  background: var(--warm-white);
}

.cerita-img-wrap {
  position: relative;
  overflow: hidden;
}

.cerita-img-main {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.cerita-quote {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,18,6,0.85), transparent);
  padding: 48px 36px 32px;
  color: var(--cream);
}

.cerita-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 8px;
  line-height: 1.4;
}

.cerita-quote span {
  font-size: 0.78rem;
  color: var(--terra-light);
  letter-spacing: 1px;
}

.cerita-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: var(--cream-dark);
}

.cerita-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
}

.cerita-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.cerita-stats {
  display: flex;
  gap: 0;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(196,98,45,0.2);
}

.cs-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(196,98,45,0.15);
}

.cs-item:last-child { border-right: none; }
.cs-item:first-child { padding-left: 0; }

.cs-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--terracotta);
  margin-bottom: 4px;
}

.cs-item span {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* ---- LAYANAN ---- */
.layanan {
  background: var(--green);
  padding: 96px 60px;
}

.layanan-header {
  margin-bottom: 52px;
}

.layanan-header .section-label { color: rgba(255,255,255,0.5); }

.layanan-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  color: white;
  line-height: 1.2;
  margin-top: 8px;
}

.layanan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.layanan-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 36px 32px;
  transition: background 0.2s, border-color 0.2s;
}

.layanan-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}

.layanan-card.highlight {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}

.layanan-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.layanan-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: white;
  margin-bottom: 12px;
}

.layanan-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}

.layanan-link {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terra-light);
  transition: opacity 0.2s;
  border-bottom: 1px solid rgba(232,144,90,0.4);
  padding-bottom: 2px;
}

.layanan-link:hover { opacity: 0.75; }

/* ---- TESTIMONI ---- */
.testimoni {
  background: var(--cream);
  padding: 96px 60px;
}

.testi-header {
  margin-bottom: 52px;
}

.testi-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
  margin-top: 8px;
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 20px;
  align-items: start;
}

.testi-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(196,98,45,0.08);
  transition: box-shadow 0.2s;
}

.testi-card:hover {
  box-shadow: 0 12px 40px rgba(196,98,45,0.1);
}

.testi-card.big {
  padding: 36px;
}

.testi-stars {
  color: var(--terracotta);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 24px;
}

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

.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--terra-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 600;
}

.testi-author span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ---- LOKASI ---- */
.lokasi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.lokasi-img {
  overflow: hidden;
}

.lokasi-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.lokasi-text {
  background: var(--text-dark);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.lokasi-text .section-label { color: var(--terra-light); }

.lokasi-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}

.lokasi-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}

.lok-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.lok-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

.lok-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 4px;
}

.lok-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(253,246,238,0.65);
}

/* ---- FOOTER ---- */
.footer {
  background: #100a02;
  padding: 64px 60px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(196,98,45,0.15);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--terra-light);
  font-style: italic;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(253,246,238,0.4);
  max-width: 260px;
}

.footer-col strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 16px;
  opacity: 0.7;
}

.footer-col a {
  display: block;
  text-decoration: none;
  font-size: 0.85rem;
  color: rgba(253,246,238,0.45);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--terra-light); }

.footer-bottom p {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(253,246,238,0.2);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 24px; }
  .hero-cards { right: 24px; bottom: 24px; }
  .strip-inner span { font-size: 0.75rem; }

  .menu { padding: 64px 24px; }
  .menu-header { flex-direction: column; gap: 12px; align-items: flex-start; }
  .menu-header h2 { font-size: 1.8rem; line-height: 1.15; text-align: left; }
  .menu-header .section-label { text-align: left; }
  .menu-note { text-align: left; max-width: 100%; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .menu-card.featured .menu-img { height: 240px; }

  .cerita { grid-template-columns: 1fr; }
  .cerita-img-wrap { height: 320px; }
  .cerita-text { padding: 48px 24px; }
  .layanan { padding: 64px 24px; }
  .layanan-grid { grid-template-columns: 1fr; }
  .testimoni { padding: 64px 24px; }
  .testi-grid { grid-template-columns: 1fr; }
  .lokasi { grid-template-columns: 1fr; }
  .lokasi-img { height: 280px; }
  .lokasi-text { padding: 48px 24px; align-items: center; text-align: center; }
  .lokasi-text h2 { text-align: center; }
  .lokasi-items { align-items: flex-start; text-align: left; width: 100%; }
  .lokasi-text .btn-primary { display: inline-block; width: auto; padding: 12px 32px; font-size: 0.85rem; align-self: center; }

  .footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
