:root {
  --pink-soft: #FFD9E4;
  --pink-deep: #F5A0BF;
  --pink-deeper: #EE84AA;
  --sage: #AFCBA6;
  --sage-deep: #8FB584;
  --cream: #FFFBF9;
  --blush: #FFF1F5;
  --ink: #4A3B3E;
  --ink-soft: #8A7679;
  --line: #F3D9E1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 249, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #ffffff, var(--pink-deep) 45%, var(--pink-deeper) 100%);
  box-shadow: inset -3px -3px 6px rgba(200, 80, 130, 0.25);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--sage-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.current::after { transform: scaleX(1); }

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--pink-deeper); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- PAGE HERO (used on inner pages) ---------- */
.page-hero {
  padding: 64px 28px 56px;
  text-align: center;
  background: var(--blush);
  border-bottom: 1px solid var(--line);
}
.page-hero .kicker {
  color: var(--sage-deep);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 10px;
}
.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.page-hero p {
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto;
}

/* ---------- HOME HERO ---------- */
.hero {
  position: relative;
  padding: 72px 28px 100px;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
  z-index: 0;
}
.hero-blob.b1 { width: 260px; height: 260px; background: var(--pink-soft); top: -60px; right: -60px; }
.hero-blob.b2 { width: 180px; height: 180px; background: var(--sage); opacity: 0.4; bottom: 20px; left: -70px; }

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blush);
  border: 1px solid var(--line);
  padding: 7px 16px 7px 10px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--pink-deeper);
  margin-bottom: 22px;
}
.eyebrow-pill span.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage-deep); }

.hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  color: var(--ink);
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--pink-deeper); }

.hero p.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 32px;
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--pink-deeper);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(238, 132, 170, 0.7);
}
.btn-primary:hover { box-shadow: 0 14px 28px -8px rgba(238, 132, 170, 0.85); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); }

.hero-visual { position: relative; aspect-ratio: 1 / 1; }

.hero-photo-main {
  position: absolute;
  width: 78%;
  top: 0; right: 0;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(200, 100, 140, 0.4);
  border: 6px solid #fff;
}
.hero-photo-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }

.hero-photo-tin {
  position: absolute;
  width: 46%;
  bottom: -6%;
  left: -4%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px -14px rgba(150, 90, 110, 0.35);
  border: 5px solid #fff;
}
.hero-photo-tin img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }

.hero-stat-card {
  position: absolute;
  top: 8%;
  left: -6%;
  background: #fff;
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 16px 32px -12px rgba(150, 90, 110, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 190px;
}
.hero-stat-card .num {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--pink-deeper);
  line-height: 1;
}
.hero-stat-card .lbl { font-size: 0.78rem; color: var(--ink-soft); font-weight: 500; }

/* ---------- SECTION GENERIC ---------- */
section { padding: 90px 0; }

.section-head { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.section-head .kicker {
  color: var(--sage-deep);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 10px;
  display: inline-block;
}
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; }

.section-alt { background: var(--blush); }

/* ---------- MENU ---------- */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  font-weight: 500;
  font-size: 0.92rem;
  background: #fff;
  transition: all 0.2s ease;
}
.menu-tab.active, .menu-tab:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }

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

.menu-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px -18px rgba(150, 90, 110, 0.28); }

.menu-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; }

.menu-card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--pink-deeper);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

.menu-card-body { padding: 22px 22px 26px; }
.menu-card-body .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.menu-card-body h3 { font-size: 1.2rem; }
.menu-card-body .price { font-family: 'Fraunces', serif; font-weight: 600; color: var(--sage-deep); font-size: 1.05rem; white-space: nowrap; }
.menu-card-body p { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- ABOUT ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }

.about-photos { position: relative; }
.about-photo-a { border-radius: 30px; overflow: hidden; box-shadow: 0 24px 50px -20px rgba(150,90,110,0.3); }
.about-photo-a img { aspect-ratio: 5/6; object-fit: cover; }

.about-photo-b {
  position: absolute;
  width: 46%;
  bottom: -8%;
  right: -10%;
  border-radius: 22px;
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: 0 18px 36px -14px rgba(150,90,110,0.32);
}
.about-photo-b img { aspect-ratio: 1/1; object-fit: cover; }

.about-copy .kicker { color: var(--sage-deep); font-weight: 600; font-size: 0.92rem; }
.about-copy h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin: 12px 0 20px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 18px; max-width: 52ch; }

.about-facts { display: grid; grid-template-columns: repeat(3, auto); gap: 28px; margin-top: 32px; }
.about-facts .fact strong { display: block; font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--pink-deeper); }
.about-facts .fact span { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- ORDERING ---------- */
.order-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.order-step { background: #fff; border-radius: 24px; padding: 30px 24px; border: 1px solid var(--line); position: relative; }
.order-step .step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink-deeper);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.order-step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.order-step p { color: var(--ink-soft); font-size: 0.9rem; }

.order-cta-panel {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--pink-soft), var(--blush));
  border-radius: 32px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.order-cta-panel h3 { font-size: 1.5rem; margin-bottom: 8px; }
.order-cta-panel p { color: var(--ink-soft); max-width: 40ch; }

.order-notes { display: flex; gap: 20px; margin-top: 40px; flex-wrap: wrap; justify-content: center; }
.order-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  background: #fff;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--line);
}
.order-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage-deep); flex-shrink: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 6px 26px; }
.faq-item summary {
  list-style: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--pink-deeper);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}
.faq-item[open] .icon { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); padding-bottom: 22px; font-size: 0.95rem; max-width: 62ch; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info h2 { font-size: clamp(1.9rem, 3vw, 2.4rem); margin-bottom: 16px; }
.contact-info > p { color: var(--ink-soft); margin-bottom: 32px; max-width: 46ch; }

.contact-detail { display: flex; gap: 16px; margin-bottom: 22px; }
.contact-detail .ic {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}
.contact-detail h4 { font-size: 0.98rem; margin-bottom: 3px; }
.contact-detail span { color: var(--ink-soft); font-size: 0.9rem; }

.social-row { display: flex; gap: 12px; margin-top: 28px; }
.social-row a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s ease;
}
.social-row a:hover { background: var(--pink-soft); }

.contact-form { background: #fff; border-radius: 28px; padding: 38px; border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.86rem; font-weight: 500; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  font-family: inherit;
  font-size: 0.94rem;
  background: var(--cream);
  color: var(--ink);
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--pink-deeper); outline: none; }
.form-submit {
  width: 100%;
  background: var(--pink-deeper);
  color: #fff;
  padding: 15px;
  border-radius: 100px;
  font-weight: 600;
  margin-top: 6px;
  transition: background 0.2s ease;
}
.form-submit:hover { background: #E06D97; }

/* ---------- FOOTER ---------- */
footer { background: var(--ink); color: #fff; padding: 56px 0 28px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.footer-top p { color: #cbb9bd; max-width: 34ch; font-size: 0.92rem; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-links h5 { font-size: 0.85rem; margin-bottom: 14px; color: #cbb9bd; font-weight: 600; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { font-size: 0.9rem; color: #f2e6e9; }
.footer-links ul li a:hover { color: var(--pink-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  font-size: 0.82rem;
  color: #b09ba0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 380px; margin: 0 auto; }
  .hero-stat-card { display: none; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .order-steps { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photos { max-width: 380px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  section { padding: 64px 0; }
  .hero { padding: 48px 20px 72px; }
  .menu-grid { grid-template-columns: 1fr; }
  .order-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .order-cta-panel { flex-direction: column; text-align: center; padding: 36px 26px; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}