/* =================== RESET & BASE =================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red: #b13d2c;
  --red-dark: #9c3324;
  --red-deep: #842617;
  --cream: #f5ecdb;
  --cream-light: #faf3e3;
  --cream-soft: #f1e6cf;
  --gold: #d4a04a;
  --gold-light: #e8b864;
  --ink: #2c1810;
  --ink-soft: #4a3526;
  --muted: #7a6855;
  --line: #d9c8a8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  background: var(--cream-light);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

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

/* =================== TYPOGRAPHY UTILITIES =================== */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: 1px;
}
.small-title {
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.6px;
  transition: all 0.28s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border: 1.5px solid var(--red);
}
.btn-primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  transform: translateY(-1.5px);
  box-shadow: 0 8px 20px rgba(177, 61, 44, 0.32);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

/* =================== HEADER =================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream-light);
  border-bottom: 1px solid rgba(177, 61, 44, 0.08);
  padding: 14px 0;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Logo */
.logo-frame {
  border: 1.8px solid var(--red);
  border-radius: 6px;
  padding: 6px 14px 7px;
  text-align: center;
  background: var(--cream-light);
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.logo-frame::before,
.logo-frame::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--red);
  transform: translateY(-50%) rotate(45deg);
}
.logo-frame::before { left: -4px; }
.logo-frame::after { right: -4px; }

.logo-main {
  font-family: 'Bungee', sans-serif;
  font-size: 18px;
  color: var(--red);
  letter-spacing: 1px;
  font-weight: 400;
}
.logo-sub {
  font-size: 7.5px;
  letter-spacing: 2.5px;
  color: var(--red);
  margin-top: 2px;
  font-weight: 500;
}

/* Nav */
.main-nav {
  display: flex;
  gap: 30px;
}
.nav-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--red); }
.nav-link.active { color: var(--red); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--red);
}

.btn-reserve {
  padding: 11px 22px;
  font-size: 11px;
}

/* =================== HERO =================== */
.hero {
  padding: 30px 0 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(212, 160, 74, 0.08), transparent 50%),
    var(--cream-light);
  position: relative;
}
.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
  min-height: 540px;
}
.hero-left { padding: 20px 0 60px; }

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 26px;
}
.hero-title-main {
  font-family: 'Bungee', sans-serif;
  font-size: 88px;
  color: var(--red);
  letter-spacing: 1px;
  line-height: 1;
}
.hero-title-sub {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 1.5px;
  margin-top: 6px;
}

.hero-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 18px;
}
.social-label {
  font-size: 11px;
  letter-spacing: 1.8px;
  color: var(--ink);
  font-weight: 700;
}
.social-icons {
  display: flex;
  gap: 8px;
}
.social-ic {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, background 0.25s;
}
.social-ic:hover {
  transform: translateY(-2px) scale(1.08);
  background: var(--red-deep);
}

/* Hero image */
.hero-right { position: relative; }
.hero-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 540px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

/* =================== VALUES STRIP =================== */
.values-strip {
  background: var(--red);
  color: #fff;
  padding: 38px 0;
  position: relative;
}
.values-strip::before,
.values-strip::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.18);
}
.values-strip::before { top: 0; }
.values-strip::after { bottom: 0; }

.values-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon {
  flex-shrink: 0;
  color: #fff;
  opacity: 0.95;
}
.value-text h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin-bottom: 8px;
  color: #fff;
}
.value-text p {
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
}

/* =================== ABOUT =================== */
.about {
  padding: 80px 0;
  background: var(--cream-light);
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: 60px;
  align-items: center;
}
.about-left p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 18px 0;
}
.about-left .section-title { margin-bottom: 24px; }
.about-left .btn { margin-top: 14px; }

.about-right { position: relative; }
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.about-card {
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}
.about-card-img {
  height: 230px;
  overflow: hidden;
}
.about-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.about-card:hover .about-card-img img { transform: scale(1.08); }
.about-card h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.4px;
  padding: 18px 16px 22px;
  line-height: 1.4;
  color: var(--ink);
}

.about-nav {
  position: absolute;
  top: -56px;
  right: 0;
  display: flex;
  gap: 8px;
}
.nav-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1.4px solid var(--gold);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.nav-arrow:hover {
  background: var(--gold);
  color: #fff;
}

/* =================== QUOTE BANNER =================== */
.quote-banner {
  background: var(--red);
  color: #fff;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.quote-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(232, 184, 100, 0.10), transparent 30%),
    radial-gradient(circle at 85% 50%, rgba(232, 184, 100, 0.10), transparent 30%);
}

.cloud {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  pointer-events: none;
}
.cloud-left { left: 30px; }

.quote-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 32px;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 14px;
  color: #fff;
}
.qmark {
  color: var(--gold-light);
  font-size: 28px;
  font-style: normal;
  padding: 0 4px;
}
.quote-author {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--gold-light);
}

.temple-deco {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
  pointer-events: none;
}

/* =================== MENU SUGGEST =================== */
.menu-suggest {
  padding: 70px 0;
  background: var(--cream-light);
}
.menu-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 30px;
  align-items: start;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.menu-card {
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.10);
}
.menu-card-img {
  height: 175px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }

.menu-card-body { padding: 14px 16px 16px; }
.menu-card-body h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
  line-height: 1.3;
}
.menu-card-body p {
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 14px;
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  font-size: 14px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.5px;
}
.card-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: 1.2px solid var(--ink);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.card-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.menu-cta {
  text-align: center;
  margin-top: 26px;
}

/* Reserve aside */
.reserve-card {
  background: var(--cream-soft);
  border-radius: 6px;
  padding: 26px 22px 0;
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}
.reserve-card-content { position: relative; z-index: 2; }
.reserve-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--red);
  line-height: 1.25;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.reserve-card p {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 22px;
}
.reserve-card .btn { font-size: 11px; padding: 11px 20px; }

.reserve-card-deco {
  position: absolute;
  bottom: 0;
  right: -10px;
  opacity: 0.55;
  pointer-events: none;
}

/* =================== EVENTS =================== */
.events {
  padding: 30px 0 80px;
  background: var(--cream-light);
}
.events-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 38px;
  gap: 22px;
  align-items: center;
}
.event-card {
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: stretch;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.10);
}
.event-img {
  height: 100%;
  min-height: 145px;
  overflow: hidden;
}
.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-date {
  position: absolute;
  left: 78px;
  top: 12px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.event-date .day {
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}
.event-date .month {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 2px;
}
.event-body { padding: 14px 16px; }
.event-body h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}
.event-body p {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 10px;
}
.event-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--red);
  transition: gap 0.25s;
}
.event-cta:hover { gap: 10px; }

.nav-arrow-side {
  align-self: center;
  justify-self: center;
}

/* =================== FOOTER =================== */
.site-footer {
  background: var(--cream);
  padding: 50px 0 0;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr 1.3fr;
  gap: 36px;
}
.footer-brand .footer-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.footer-list svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}
.social-icons-dark .social-ic {
  background: var(--cream-light);
  color: var(--red);
  width: 34px;
  height: 34px;
  border: 1px solid rgba(177, 61, 44, 0.2);
}
.social-icons-dark .social-ic:hover {
  background: var(--red);
  color: #fff;
}
.footer-note {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 14px;
}
.newsletter {
  display: flex;
  background: var(--cream-light);
  border-radius: 999px;
  padding: 4px 4px 4px 16px;
  border: 1px solid var(--line);
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 12.5px;
  color: var(--ink);
  padding: 8px 4px;
}
.newsletter input::placeholder { color: var(--muted); }
.newsletter button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}
.newsletter button:hover {
  background: var(--red-deep);
  transform: rotate(-12deg) scale(1.05);
}

.footer-bottom {
  margin-top: 40px;
  padding: 18px 0;
  text-align: center;
  font-size: 11.5px;
  color: var(--muted);
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(177, 61, 44, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s;
  z-index: 50;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--red-deep);
  transform: translateY(-3px);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1100px) {
  .hero-title-main { font-size: 70px; }
  .main-nav { gap: 18px; }
  .nav-link { font-size: 11px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .header-inner { flex-wrap: wrap; }
  .main-nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; margin-top: 10px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-image { height: 360px; }
  .values-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 30px; }
  .about-cards { grid-template-columns: 1fr; }
  .about-nav { position: static; margin-bottom: 14px; }
  .menu-inner { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: 1fr; }
  .nav-arrow-side { display: none; }
  .temple-deco { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .hero-title-main { font-size: 54px; }
  .hero-title-sub { font-size: 18px; }
  .section-title { font-size: 28px; }
  .menu-grid { grid-template-columns: 1fr; }
  .values-inner { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 90px 1fr; }
  .event-date { left: 58px; }
  .hero-actions { flex-wrap: wrap; }
  .quote-text { font-size: 18px; }
}
