:root{
  --bg:#0b1220;
  --ink:#f6f2ea;
  --muted:rgba(246,242,234,.78);
  --gold:#c6a062;
  --card:#0f1b2e;
  --dark:#0a0f18;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Be Vietnam Pro", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% 0%, rgba(198,160,98,.12), transparent 60%),
              radial-gradient(900px 600px at 90% 20%, rgba(246,242,234,.10), transparent 55%),
              var(--bg);
  color:var(--ink);
}
a{color:inherit}

.container{max-width:1220px;margin:0 auto;padding:40px 18px 80px}

.topbar{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 18px;
  background: rgba(11,18,32,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.brand{display:flex;gap:12px;align-items:center}
.logo{width:42px;height:42px;object-fit:contain;filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));}
.brandname{font-family:"Noto Serif Display", serif; font-weight:600; letter-spacing:.6px;}
.tagline{font-size:12px;color:var(--muted); margin-top:2px}

.lang{display:flex;gap:8px}
.pill{
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:var(--ink);
  padding:8px 10px;
  border-radius:999px;
  cursor:pointer;
  font-size:12px;
}
.pill.active{border-color:rgba(198,160,98,.55); background:rgba(198,160,98,.15)}

.hero{
  min-height:78vh;
  background-color: var(--bg);
  background-image: var(--hero);
  background-size: var(--heroSize, cover);
  background-repeat: var(--heroRepeat, no-repeat);
  background-position: var(--heroPos, center);
  position:relative;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(700px 420px at 50% 52%, rgba(198,160,98,.22), transparent 62%),
                    url('assets/logo.webp');
  background-repeat:no-repeat;
  background-position:center 54%;
  background-size: min(820px, 74vw) auto;
  opacity:.14;
  filter: blur(.2px);
  mix-blend-mode: screen;
  pointer-events:none;
}

.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(11,18,32,.80) 0%, rgba(11,18,32,.55) 40%, rgba(11,18,32,.55) 100%),
              linear-gradient(0deg, rgba(11,18,32,.55) 0%, rgba(11,18,32,.15) 40%, rgba(11,18,32,.70) 100%);
}
.hero-inner{position:relative; padding:48px 18px; max-width:1080px; margin:0 auto; min-height:78vh; display:flex; align-items:center; justify-content:center}
.hero-card{
  max-width:640px;
  background: rgba(15,27,46,.72);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:22px 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.40);
}
h1{
  font-family:"Noto Serif Display", serif;
  margin:0 0 10px;
  font-size:36px;
  line-height:1.15;
  letter-spacing:.6px;
}
.lead{color:var(--muted); margin:0 0 16px; line-height:1.65}

.price-row{display:flex;gap:16px;align-items:flex-start;justify-content:space-between;flex-wrap:wrap}
.price{font-family:"Noto Serif Display", serif; font-size:28px; color:var(--gold)}
.subnote{font-size:12px;color:var(--muted);margin-top:6px}
.limited{font-size:12px;color:rgba(198,160,98,.95);margin-top:10px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:999px;
  padding:12px 14px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  cursor:pointer;
  font-size:13px;
}
.btn.primary{
  background: linear-gradient(135deg, rgba(198,160,98,.95), rgba(198,160,98,.65));
  border-color: rgba(198,160,98,.7);
  color: var(--dark);
  font-weight:700;
}
.btn.ghost:hover{background: rgba(255,255,255,.11)}
.btn.primary:hover{filter:brightness(1.03)}
.cta{display:flex;gap:10px;flex-wrap:wrap}

.qr-wrap{
  margin-top:16px;
  display:flex; gap:14px; align-items:center;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:16px;
}
.qr-box{
  width:96px;height:96px;
  border-radius:14px;
  background: rgba(246,242,234,.92);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  border:1px solid rgba(198,160,98,.35);
}
.qr-box img{width:100%;height:100%;object-fit:cover}
.qr-title{font-family:"Noto Serif Display", serif; letter-spacing:.2px}
.qr-hint{font-size:12px;color:var(--muted); margin-top:4px}

.grid2{display:grid; grid-template-columns: 1.12fr .88fr; gap:28px; align-items:center; margin:44px 0}
/* Make the image side larger for readability */
.grid2.reverse{grid-template-columns: .82fr 1.18fr}
@media(max-width:880px){
  .grid2,.grid2.reverse{grid-template-columns:1fr}
  h1{font-size:30px}
  /* Edge-to-edge media on mobile so text inside images stays readable */
  .grid2 .media{margin:0 -18px}
  .grid2 .media .frame{border-radius:0}
}

.frame{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 55px rgba(0,0,0,.35);
}

/* Poster image with text (make it bigger & easier to read) */
.grid2.reverse .media{justify-self:end}
.poster{max-width:760px}

h2{
  font-family:"Noto Serif Display", serif;
  font-size:24px;
  margin:0 0 12px;
  letter-spacing:.4px;
}
.bullets{margin:0; padding-left:18px; color:var(--muted); line-height:1.75}
.note{margin:12px 0 0; color:rgba(198,160,98,.95); font-size:13px}

.card{
  background: rgba(15,27,46,.58);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:20px;
  margin:22px 0;
}

.order{margin-top:34px}
.order-head{margin-bottom:14px}
.form{display:flex;flex-direction:column;gap:12px}
label span{display:block;font-size:12px;color:rgba(246,242,234,.82);margin-bottom:6px}
.hint{font-size:12px;color:rgba(246,242,234,.72);margin:-2px 0 8px; line-height:1.5}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color:var(--ink);
  outline:none;
  font-family: "Be Vietnam Pro", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
textarea{resize:vertical}
.row2{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media(max-width:720px){ .row2{grid-template-columns:1fr} }

.actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:6px}
.tiny{font-size:11px;color:rgba(246,242,234,.70);margin:4px 0 0}

.thanks{margin-top:14px}
.thanks-card{
  background: rgba(198,160,98,.12);
  border:1px solid rgba(198,160,98,.35);
  border-radius:18px;
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.thanks-title{font-family:"Noto Serif Display", serif; font-size:18px}
.thanks-text{font-size:12px;color:rgba(246,242,234,.82)}

.footer{margin-top:44px; padding-top:18px; border-top:1px solid rgba(255,255,255,.08)}
.footer div{font-size:12px;color:rgba(246,242,234,.74)}

/* Lightbox (tap image to zoom) */
.lightbox{position:fixed; inset:0; background:rgba(5,10,18,.78); display:none; align-items:center; justify-content:center; padding:18px; z-index:9999; backdrop-filter: blur(6px)}
.lightbox.open{display:flex}
.lightbox-inner{max-width:min(1100px, 96vw); max-height:92vh;}
.lightbox-inner img{width:100%; height:auto; max-height:92vh; border-radius:18px; border:1px solid rgba(255,255,255,.12); box-shadow:0 30px 90px rgba(0,0,0,.55)}
