:root{
  --wine:#74132f;
  --wine-dark:#4e0d22;
  --cream:#f8eee2;
  --ink:#10263a;
  --muted:#7a6870;
  --line:#e6d8cc;
  --white:#fff;
  --shadow:0 12px 35px rgba(74,28,44,.12);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:#fbf8f5;
  color:var(--ink);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
.hero{
  background:linear-gradient(135deg,var(--cream),#fff 60%,#f7e7df);
  padding:28px 18px;
  border-bottom:1px solid var(--line);
}
.hero-inner{
  max-width:1120px;
  margin:auto;
  display:grid;
  grid-template-columns:minmax(260px,420px) 1fr;
  gap:40px;
  align-items:center;
}
.poster{
  width:100%;
  max-height:600px;
  object-fit:cover;
  object-position:center;
  border-radius:20px;
  box-shadow:var(--shadow);
}
.hero-copy{padding:20px}
.eyebrow{
  display:inline-block;
  margin:0 0 14px;
  padding:8px 12px;
  border-radius:999px;
  background:var(--wine);
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
}
h1{
  margin:0;
  color:var(--wine);
  font-size:clamp(48px,8vw,92px);
  line-height:.9;
  letter-spacing:-.05em;
}
.subtitle{font-size:22px;margin:18px 0 8px;font-weight:700}
.location{font-size:18px;margin:0;color:#4e4a4c}
.page{max-width:1120px;margin:32px auto;padding:0 18px}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:26px;
  margin-bottom:22px;
  box-shadow:0 7px 24px rgba(40,20,30,.06);
}
.section-title{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-bottom:22px;
}
.section-title>div{display:flex;align-items:center;gap:12px}
.step{
  width:34px;height:34px;border-radius:50%;
  background:var(--wine);color:#fff;
  display:grid;place-items:center;font-weight:800;
}
h2{margin:0;font-size:24px}
.required-note,.price-note{color:var(--muted);font-size:14px}
.grid{display:grid;gap:16px}
.grid.two{grid-template-columns:1fr 1fr}
label{font-weight:700;font-size:14px;color:#41383c}
input{
  display:block;width:100%;margin-top:7px;
  padding:13px 14px;border:1px solid #d9c9c0;
  border-radius:12px;font:inherit;outline:none;
  background:#fff;
}
input:focus{border-color:var(--wine);box-shadow:0 0 0 3px rgba(116,19,47,.1)}
.tickets{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.ticket{
  border:1px solid var(--line);border-radius:18px;overflow:hidden;
  background:#fff;display:flex;flex-direction:column;
}
.ticket img{width:100%;aspect-ratio:1/1;object-fit:cover;background:#f5eee9}
.ticket-body{padding:18px}
.ticket h3{margin:0 0 7px;color:var(--wine);font-size:20px}
.ticket p{margin:0;color:var(--muted);line-height:1.45;min-height:44px}
.ticket-bottom{
  display:flex;justify-content:space-between;align-items:center;
  margin-top:18px;gap:12px
}
.ticket-bottom strong{font-size:21px;color:var(--wine)}
.qty{display:flex;align-items:center;border:1px solid #d9c9c0;border-radius:12px;overflow:hidden}
.qty button{
  width:42px;height:42px;border:0;background:#fff;
  font-size:24px;cursor:pointer;color:var(--wine)
}
.qty output{width:42px;text-align:center;font-weight:800}
.remove{
  margin-top:12px;border:0;background:transparent;
  color:#a15a6d;cursor:pointer;text-align:left;padding:4px 0
}
.summary-rows{display:grid;gap:9px;margin-bottom:18px}
.summary-row{display:flex;justify-content:space-between;gap:16px;padding:10px 0;border-bottom:1px solid #f0e8e3}
.empty{color:var(--muted);margin:0}
.totals{border-top:1px solid var(--line);padding-top:14px}
.totals>div{display:flex;justify-content:space-between;padding:7px 0}
.totals .grand{font-size:23px;color:var(--wine);border-top:1px solid var(--line);margin-top:8px;padding-top:14px}
.pay-button{
  width:100%;margin-top:20px;padding:16px 20px;border:0;border-radius:13px;
  background:#ffc439;color:#172c46;font-weight:900;font-size:17px;cursor:pointer
}
.pay-button:disabled{opacity:.45;cursor:not-allowed}
.test-note{font-size:13px;color:var(--muted);line-height:1.5;margin:12px 0 0}
.message{margin-top:14px;padding:12px;border-radius:10px;background:#eef7ee;color:#2d6632}
footer{text-align:center;color:var(--muted);padding:30px 18px 50px;font-size:13px}
@media(max-width:760px){
  .hero-inner,.tickets,.grid.two{grid-template-columns:1fr}
  .hero-copy{padding:0 8px 12px}
  .hero{padding-top:16px}
  .card{padding:20px}
  .poster{max-height:none}
}
