@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300&family=Noto+Serif+SC:wght@300;400&display=swap');

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

:root {
  --red: #8B1A1A;
  --red-dark: #5C0E0E;
  --red-light: #B94040;
  --gold: #C9A84C;
  --gold-light: #E5C87A;
  --cream: #FAF6EF;
  --cream-dark: #F0E8D8;
  --ink: #1A1208;
  --ink-mid: #3D2B1F;
  --muted: #7A6455;
  --white: #FFFEF9;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(26, 18, 8, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: background 0.3s;
}
.nav-logo {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: rgba(250, 246, 239, 0.8);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* ── HERO ── */
#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--red-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 4rem 5rem;
  position: relative;
  z-index: 2;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 0; bottom: 0;
  width: 120px;
  background: var(--red-dark);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  z-index: 3;
}

.hero-eyebrow {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.hero-title-cn {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  margin-top: 0.3rem;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
  opacity: 0.6;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(250, 246, 239, 0.75);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  align-self: flex-start;
}
.hero-cta:hover {
  background: var(--gold);
  color: var(--red-dark);
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-image-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  gap: 3px;
}
.hero-img {
  overflow: hidden;
  position: relative;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85) saturate(1.1);
}
.hero-img:hover img { transform: scale(1.05); }
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(26,18,8,0.5));
}
.hero-img-label {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(250,246,239,0.85);
  letter-spacing: 0.05em;
}

/* food image placeholders */
.food-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: white;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 1rem;
}

.food-placeholder-bg1 { background: #3D1515; }
.food-placeholder-bg2 { background: #2A1A10; }
.food-placeholder-bg3 { background: #1E2A1A; }
.food-placeholder-bg4 { background: #2A2010; }

/* ── SECTION SHARED ── */
section { padding: 7rem 5rem; }

.section-label {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: white;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title-cn {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.9em;
  color: var(--muted);
  display: block;
  font-weight: 300;
}

/* ── MENU SECTION ── */
#menu {
  background: var(--ink);
  color: var(--cream);
  padding: 7rem 5rem;
  position: relative;
  overflow: hidden;
}
#menu::before {
  content: '川';
  position: absolute;
  right: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Noto Serif SC', serif;
  font-size: 28rem;
  color: rgba(201, 168, 76, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
#menu .section-label { color: var(--gold); }
#menu .section-title { color: var(--cream); }

.menu-intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
}
.menu-quote {
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
  margin-top: 2rem;
}
.menu-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(250, 246, 239, 0.85);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.menu-quote cite {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}
.menu-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(250,246,239,0.65);
  line-height: 1.85;
  margin-top: 1.5rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 1.5px solid rgba(201,168,76,0.15);
}
.menu-card {
  background: rgba(255,255,255,0.03);
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.08);
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
}
.menu-card:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.25);
}
.menu-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.menu-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.menu-card-cn {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  letter-spacing: 0.1em;
}
.menu-card-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: white;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.menu-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.menu-card-heat {
  display: flex;
  gap: 3px;
  margin-top: 0.8rem;
}
.chili { color: var(--red-light); font-size: 0.7rem; }
.chili.dim { opacity: 0.2; }

.promo-banner {
  margin-top: 4rem;
  padding: 3rem 4rem;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.promo-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-light);
  max-width: 500px;
  line-height: 1.4;
}
.promo-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: white;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ── LOCATION SECTION ── */
#location {
  background-color: rgb(236, 193, 102);
  padding: 7rem 5rem;
}
.location-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
  align-items: start;
}
.location-image-wrap {
  position: relative;
}
.location-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: sepia(0.15) saturate(0.9);
}
.location-photo-placeholder {
  width: 100%;
  height: 420px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
}
.location-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 90px;
  height: 90px;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.location-badge-main {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.2rem;
}
.location-badge-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.location-details { padding-top: 1rem; }

.info-block {
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(26,18,8,0.1);
}
.info-block:last-child { border-bottom: none; }
.info-label {
  font-family: 'Noto Serif SC', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--ink-mid);
  line-height: 1.6;
}
.info-value strong {
  font-weight: 400;
  color: var(--ink);
}
.info-value a {
  color: var(--red);
  text-decoration: none;
  transition: color 0.3s;
}
.info-value a:hover { color: var(--red-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  margin-top: 3rem;
  background: rgba(26,18,8,0.08);
}
.contact-card {
  background: var(--cream);
  padding: 2rem;
  transition: background 0.3s;
}
.contact-card:hover { background: var(--cream-dark); }
.contact-card-icon {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.contact-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.contact-card-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}
.contact-card-body a {
  color: var(--red);
  text-decoration: none;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(250,246,239,0.4);
  padding: 3rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.footer-logo {
  font-family: 'Noto Serif SC', serif;
  color: var(--gold);
  font-size: 1.1rem;
}
.footer-right {
  text-align: right;
}

/* my own */
#shift-left-abit {
  margin-left: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #home { grid-template-columns: 1fr; }
  .hero-left::after { display: none; }
  .hero-right { height: 50vh; }
  .hero-left { padding: 8rem 2.5rem 4rem; }
  section { padding: 5rem 2rem; }
  #menu { padding: 5rem 2rem; }
  #location { padding: 5rem 2rem; }
  .menu-intro { grid-template-columns: 1fr; gap: 2rem; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .location-layout { grid-template-columns: 1fr; }
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.5rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-right { text-align: center; }
  .promo-banner { flex-direction: column; padding: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hero-image-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 1fr); }
  .nav-links { display: none; }
}
