:root {
  --bg: #fff3dc;
  --bg-soft: #ffe6e6;
  --accent: #9fd4c7;
  --accent-dark: #5aa593;
  --text: #5a3b1e;
  --text-muted: #8b6d4a;
  --border: #f0d6b8;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-soft: 0 12px 30px rgba(139, 109, 74, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: radial-gradient(circle at top left, #ffe6e6 0, #fff3dc 40%, #ffffff 100%);
}

/* Layout */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 243, 220, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 214, 184, 0.8);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: "Sacramento", cursive;
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease-out;
}

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

.nav-links a.active {
  color: var(--text);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

/* Mobile nav */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  background: rgba(255, 230, 230, 0.9);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out,
    color 0.15s ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 10px 22px rgba(154, 212, 199, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(154, 212, 199, 0.8);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(139, 109, 74, 0.4);
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(255, 230, 230, 0.7);
}

.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.btn-wa:hover {
  background: #1fb35a;
}

/* Hero */

.hero {
  padding: 3rem 0 4rem;
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
}

.hero-kicker {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-title {
  font-size: clamp(2.1rem, 3.2vw, 2.8rem);
  line-height: 1.1;
  margin: 0.6rem 0 0.5rem;
}

.hero-title span {
  background: linear-gradient(120deg, var(--accent-dark), #ff9a9e);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero image */

.hero-photo {
  position: relative;
}

.hero-photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #fffaf2;
}

.hero-photo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-chip {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--text-muted);
  box-shadow: 0 5px 14px rgba(139, 109, 74, 0.3);
}

/* Sections */

.section {
  padding: 3rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* Cards / grids */

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

.card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(240, 214, 184, 0.9);
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.chip {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(159, 212, 199, 0.2);
  color: var(--accent-dark);
  font-size: 0.78rem;
}

/* Menu grid */

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

.menu-item {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.menu-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.menu-title {
  font-weight: 600;
}

.menu-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.menu-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 0.3rem;
}

.menu-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.menu-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Gallery */

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

.gallery-grid figure {
  margin: 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 0.8rem 1rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
}

/* About */

.about-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: start;
}

.about-highlight {
  padding: 1.2rem 1.4rem;
  background: rgba(255, 230, 230, 0.7);
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(139, 109, 74, 0.5);
  font-size: 0.9rem;
}

/* Contact */

.contact-layout {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: start;
}

.contact-box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.contact-list {
  padding-left: 1.1rem;
  margin: 0.2rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.social-link {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(139, 109, 74, 0.5);
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
}

.social-link:hover {
  background: rgba(255, 230, 230, 0.7);
}

/* Footer */

.site-footer {
  padding: 1.8rem 0 2rem;
  border-top: 1px solid rgba(240, 214, 184, 0.9);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-footer .footer-social {
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
}

/* Utilities */

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

/* Responsive */

@media (max-width: 800px) {
  .hero-inner,
  .about-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.3rem;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.9rem 1.5rem 1.3rem;
    background: rgba(255, 243, 220, 0.98);
    border-bottom: 1px solid rgba(240, 214, 184, 0.9);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.16s ease-out, opacity 0.16s ease-out;
  }

  .nav-links.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }
}