:root {
  --ink: #351a4c;
  --muted: #6d5a76;
  --purple: #7227b8;
  --purple-dark: #52168c;
  --pink: #ff4f9a;
  --coral: #ff6c60;
  --yellow: #ffd34e;
  --green: #49b964;
  --sky: #dff5ff;
  --cream: #fffaf0;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(66, 30, 88, .16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--cream);
  font-family: Nunito, "Trebuchet MS", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 252, 246, .96);
  border-bottom: 1px solid rgba(82, 22, 140, .08);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(var(--max), calc(100% - 28px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand-logo { width: 132px; height: 66px; object-fit: contain; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.lang-switch {
  display: flex;
  padding: 5px;
  border-radius: 999px;
  background: #f1e9f8;
  box-shadow: inset 0 0 0 1px rgba(82,22,140,.08);
}
.lang-btn {
  min-width: 48px;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--purple-dark);
  font-weight: 900;
  cursor: pointer;
}
.lang-btn[aria-pressed="true"] { background: white; box-shadow: 0 5px 14px rgba(63,24,85,.14); }
.icon-btn, .back-btn {
  min-height: 46px;
  border: 0;
  border-radius: 15px;
  background: white;
  color: var(--purple-dark);
  font-weight: 900;
  box-shadow: 0 7px 20px rgba(57,27,78,.12);
  cursor: pointer;
}
.icon-btn { width: 46px; display: grid; place-items: center; font-size: 20px; }
.back-btn { padding: 0 16px; display: inline-flex; align-items: center; gap: 8px; }

.hero {
  position: relative;
  overflow: hidden;
  background: #93ddff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.78) 34%, rgba(255,255,255,.1) 66%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 28px));
  min-height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 46px 0;
}
.hero-card {
  width: min(520px, 100%);
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.91);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.8);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 13px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #6a4300;
  background: #ffe992;
  font-weight: 900;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .035em;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 12px; font-size: clamp(2.1rem, 5vw, 4rem); line-height: .98; letter-spacing: -.035em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.05; letter-spacing: -.025em; }
.hero-card p { font-size: 1.08rem; line-height: 1.55; color: #513d5c; margin-bottom: 22px; }
.primary-btn, .secondary-btn {
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.primary-btn { color: white; background: linear-gradient(135deg, var(--pink), var(--coral)); box-shadow: 0 12px 24px rgba(255,79,154,.26); }
.secondary-btn { color: var(--purple-dark); background: white; box-shadow: 0 10px 24px rgba(66,30,88,.12); }
.primary-btn:active, .secondary-btn:active, .menu-card:active { transform: scale(.98); }

.section {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: 70px 0;
}
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 30px; }
.section-heading p { color: var(--muted); font-size: 1.05rem; line-height: 1.55; }
.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.menu-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid rgba(82,22,140,.08);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(66,30,88,.2); }
.menu-card-media { height: 178px; overflow: hidden; background: var(--sky); }
.menu-card-media img { width: 100%; height: 100%; object-fit: cover; }
.menu-card-icon {
  height: 178px;
  display: grid;
  place-items: center;
  font-size: 74px;
  background: linear-gradient(145deg, #f7efff, #e8fbff);
}
.menu-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.menu-card h3 { margin-bottom: 8px; font-size: 1.45rem; }
.menu-card p { margin-bottom: 18px; color: var(--muted); line-height: 1.45; }
.menu-card-link { margin-top: auto; color: var(--purple); font-weight: 900; }
.status-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--purple-dark);
  font-size: .76rem;
  font-weight: 900;
  box-shadow: 0 7px 18px rgba(56,26,77,.14);
}
.status-pill.soon { background: #fff2bf; color: #704900; }

.page-hero {
  background: linear-gradient(180deg, #dff5ff 0%, #f8fcff 100%);
  border-bottom: 1px solid rgba(82,22,140,.07);
}
.page-hero-inner {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: 52px 0 42px;
  text-align: center;
}
.page-hero p { max-width: 700px; margin: 0 auto; color: var(--muted); font-size: 1.08rem; line-height: 1.55; }

.content-card {
  background: white;
  border: 1px solid rgba(82,22,140,.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 28px;
}
.two-col { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items: center; }
.book-cover { max-height: 520px; margin: 0 auto; border-radius: 18px; box-shadow: 0 20px 40px rgba(45,26,58,.18); }
.note-box { padding: 18px; border-radius: 18px; background: #fff7d6; color: #6f4d00; line-height: 1.5; }

.site-footer { padding: 34px 18px; text-align: center; color: var(--muted); border-top: 1px solid rgba(82,22,140,.08); background: white; }

.language-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(38, 16, 52, .73);
  backdrop-filter: blur(14px);
}
.language-gate[hidden] { display: none; }
.language-panel {
  width: min(500px, 100%);
  padding: 30px;
  border-radius: 32px;
  background: white;
  text-align: center;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.language-panel img { width: 220px; height: 128px; object-fit: contain; margin: 0 auto 10px; }
.language-panel h2 { margin-bottom: 8px; }
.language-panel p { color: var(--muted); margin-bottom: 22px; }
.language-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.language-choice {
  min-height: 78px;
  border: 2px solid #eadcf4;
  border-radius: 20px;
  background: #fff;
  color: var(--purple-dark);
  font-weight: 900;
  cursor: pointer;
}
.language-choice:hover { border-color: var(--purple); background: #faf4ff; }

.coming-wrap { min-height: 62vh; display: grid; place-items: center; }
.coming-card { max-width: 640px; text-align: center; }
.coming-icon { font-size: 90px; margin-bottom: 12px; }

@media (max-width: 860px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { min-height: 0; display: grid; grid-template-columns: 150px 1fr; }
  .menu-card-media, .menu-card-icon { height: 100%; min-height: 190px; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .header-inner { min-height: 68px; }
  .brand-logo { width: 108px; height: 58px; }
  .hero { padding-top: 0; }
  .hero::after { background: linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.16) 45%, rgba(255,255,255,.95) 74%, #fff 100%); }
  .hero-image { height: 54%; object-position: center; }
  .hero-inner { min-height: 710px; align-items: flex-end; padding: 260px 0 24px; }
  .hero-card { padding: 24px 20px; background: rgba(255,255,255,.96); }
  .hero-card h1 { font-size: clamp(2.2rem, 12vw, 3.4rem); }
  .section { padding: 48px 0; }
  .menu-card { grid-template-columns: 118px 1fr; border-radius: 24px; }
  .menu-card-media, .menu-card-icon { min-height: 168px; }
  .menu-card-icon { font-size: 58px; }
  .menu-card-body { padding: 18px 16px; }
  .menu-card h3 { font-size: 1.25rem; }
  .menu-card p { font-size: .93rem; }
  .language-options { grid-template-columns: 1fr; }
  .language-panel { padding: 24px 18px; }
  .page-hero-inner { padding: 38px 0 30px; }
  .content-card { padding: 22px 18px; }
}
