:root {
  --bg: #F7F7F7;
  --white: #FFFFFF;
  --text: #111;
  --sub: #666;
  --line: #DDD;
  --shadow: 0 18px 45px rgba(0,0,0,0.06);
  --radius: 22px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.lp :root {
  --bg: #F7F7F7;
  --white: #FFFFFF;
  --text: #111;
  --sub: #666;
  --line: #DDD;
  --shadow: 0 18px 45px rgba(0,0,0,0.06);
  --radius: 22px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

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

.lp body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* SECTION BASE */
.lp .section {
  padding: 160px 8%;
  position: relative;
}
.lp .section__label {
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--sub);
  margin-bottom: 24px;
}
.lp .section__title {
  font-weight: 300;
  font-size: 28px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.lp .section__title--center { text-align: center; }
.lp .section__body {
  font-size: 15px;
  line-height: 2.1;
  color: var(--sub);
}
.lp .section__body--center { text-align: center; }

/* HERO */
.lp .hero {
  min-height: 100vh;
  padding: 160px 8% 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lp .hero__bg-block {
  position: absolute;
  top: 18%; bottom: 10%;
  width: 32%;
  background: var(--white);
  border-radius: 32px;
  box-shadow: var(--shadow);
  opacity: .9;
}
.lp .hero__bg-block--left { left: -8%; }
.lp .hero__bg-block--right { right: -10%; }

/* hero左右 background-image */
.lp .hero__bg-image {
  position: absolute;
  top: 8%;
  bottom: 8%;
  width: 26%;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: grayscale(10%);
  pointer-events: none;
}
.lp .hero__bg-image--left {
  left: -4%;
  background-image: url('pasta.png');
}
.lp .hero__bg-image--right {
  right: -4%;
  background-image: url('pasta1.png');
}

.lp .hero__image-frame {
  width: 380px;
  max-width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.lp .hero__image { width: 100%; display: block; }

.lp .hero__eyebrow {
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--sub);
  margin-bottom: 16px;
}
.lp .hero__title {
  font-weight: 300;
  font-size: 32px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.lp .hero__copy {
  font-size: 14px;
  line-height: 2.1;
  color: var(--sub);
  margin-bottom: 32px;
}
.lp .hero__line {
  width: 120px;
  height: 1px;
  background: var(--line);
  margin-bottom: 18px;
}
.lp .hero__meta {
  display: flex;
  gap: 24px;
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--sub);
}

.lp .hero__scroll {
  position: absolute;
  left: 8%;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp .hero__scroll-label {
  font-size: 10px;
  letter-spacing: .24em;
  color: var(--sub);
}
.lp .hero__scroll-line {
  width: 1px;
  height: 60px;
  background: var(--line);
  transform-origin: top;
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(.1); opacity: .2; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(.1); opacity: .1; }
}

/* CONCEPT */
.lp .concept__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lp .concept__image-stack {
  position: relative;
  height: 360px;
}
.lp .concept__image-card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.lp .concept__image-card--main { inset: 0 12% 12% 0; }
.lp .concept__image-card--sub { inset: 18% 0 0 40%; opacity: .9; }
.lp .concept__image { width: 100%; height: 100%; object-fit: cover; }

/* WORKS */
.lp .works__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}
.lp .work-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 24px 32px;
  box-shadow: var(--shadow);
  transform-origin: center;
}
.lp .work-card__image-frame {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
}
.lp .work-card__image { width: 100%; display: block; }
.lp .work-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--sub);
  margin-bottom: 10px;
}
.lp .work-card__title {
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 10px;
}
.lp .work-card__body {
  font-size: 13px;
  line-height: 2;
  color: var(--sub);
}

/* MENU */
.lp .menu-top-image img {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}
.lp .menu__list {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px;
}
.lp .menu-card {
  background: var(--white);
  border-radius: 18px;
  padding: 18px 18px 22px;
  box-shadow: var(--shadow);
}
.lp .menu-card__image-frame {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
}
.lp .menu-card__image { width: 100%; display: block; }
.lp .menu-card__name { font-size: 14px; margin-bottom: 4px; }
.lp .menu-card__price { font-size: 12px; color: var(--sub); margin-bottom: 6px; }
.lp .menu-card__scale { font-size: 11px; color: var(--sub); margin-bottom: 6px; }
.lp .menu-card__desc { font-size: 12px; color: var(--sub); line-height: 1.8; }

.lp .menu-card--extra { display: none; }
.lp.menu-open .menu-card--extra { display: block; }

.lp .menu__more-wrap { text-align: center; margin-top: 32px; }
.lp .menu__more-btn {
  border: 1px solid var(--text);
  background: var(--white);
  color: var(--text);
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .18em;
  cursor: pointer;
  transition: .3s;
}
.lp .menu__more-btn:hover {
  background: var(--text);
  color: var(--white);
}
@media(max-width:1200px){
  .lp .menu__list{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:960px){
  .lp .menu__list{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:640px){
  .lp .menu__list{grid-template-columns:1fr;}
}

/* CHEF */
.lp .chef__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lp .chef__image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.lp .chef__image { width: 100%; display: block; }

/* SPACE */
.lp .space__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lp .space__image-layer {
  position: relative;
  height: 380px;
}
.lp .space__image-frame {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.lp .space__image-frame--back { inset: 10% 18% 0 0; opacity: .9; }
.lp .space__image-frame--front { inset: 0 0 18% 22%; }
.lp .space__image { width: 100%; height: 100%; object-fit: cover; }

/* RESERVE */
.lp .reserve__inner {
  max-width: 720px;
  margin: 0 auto;
}
.lp .reserve__panel {
  margin-top: 40px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.lp .reserve__row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(230,230,230,0.9);
}
.lp .reserve__row:last-child { border-bottom: none; }
.lp .reserve__button {
  border: 1px solid var(--text);
  background: var(--white);
  color: var(--text);
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .18em;
  cursor: pointer;
  transition: .35s;
}
.lp .reserve__button:hover {
  background: var(--text);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

/* FOOTER */
.lp .footer {
  padding: 40px 8% 60px;
}
.lp .footer__line {
  height: 1px;
  background: var(--line);
  margin-bottom: 18px;
}
.lp .footer__inner {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--sub);
}

/* ANIMATION */
.lp .fade, 
.lp .slide, 
.lp .rise, 
.lp .card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.lp .slide { transform: translateX(32px); }
.lp .rise { transform: translateY(40px); }
.lp .card { transform: translateY(32px) scale(.98); }
.lp .visible {
  opacity: 1;
  transform: translate(0,0) scale(1);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .lp .hero {
    padding: 120px 20px 80px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp .hero__bg-block,
  .lp .hero__bg-image { display: none; }

  .lp .section { padding: 120px 20px; }
  .lp .concept__grid,
  .lp .chef__grid,
  .lp .space__wrap { grid-template-columns: 1fr; }
  .lp .works__list { grid-template-columns: 1fr; }
  .lp .menu__list { grid-template-columns: repeat(2,1fr); }
  .lp .reserve__panel { flex-direction: column; }
}

@media (max-width: 640px) {
  .lp .menu__list { grid-template-columns: 1fr; }
}
