/* el-photobooth.css — page-specific layer for /el/ypiresies/photobooth/.
   Loads AFTER 07-live-stage.css and reuses its tokens (--card, --gold, --serif…).
   Nothing here overrides the homepage; it only adds long-form article components. */

/* page hero (compact — no full-viewport stage scene) */
.phero{position:relative;padding:clamp(120px,16vh,180px) 0 clamp(48px,7vh,80px);background:radial-gradient(ellipse 90% 70% at 50% 0%,#251c37,#130f1e 58%,#0a0810 100%);border-bottom:1px solid var(--line);}
.phero h1{font-size:clamp(1.8rem,1.5vw + 1.6rem,3.1rem);line-height:1.1;margin:.5rem 0 .9rem;max-width:20ch;}
.phero .lead{color:var(--dim);font-size:clamp(.95rem,.4vw + .85rem,1.1rem);max-width:58ch;margin-bottom:1.5rem;}
.phero-actions{display:flex;flex-wrap:wrap;align-items:center;gap:1rem;}

/* breadcrumb */
.crumb{font-size:.8rem;color:var(--muted);margin-bottom:.4rem;}
.crumb a{color:var(--muted);text-decoration:none;}
.crumb a:hover{color:var(--gold);}

/* long-form article body */
.prose{max-width:70ch;}
.prose h2{font-size:clamp(1.4rem,1vw + 1.25rem,2rem);margin:2.4rem 0 .7rem;}
.prose h3{font-size:1.12rem;margin:1.5rem 0 .4rem;}
.prose p{color:var(--dim);margin-bottom:1rem;}
.prose strong{color:var(--ink);font-weight:700;}
.prose a{color:var(--gold);text-decoration:underline;text-underline-offset:3px;}
.prose ul{list-style:none;margin:0 0 1.2rem;}
.prose ul li{position:relative;color:var(--dim);padding-inline-start:1.4rem;margin-bottom:.45rem;}
.prose ul li::before{content:'';position:absolute;inset-inline-start:0;top:.62em;width:6px;height:6px;border-radius:50%;background:var(--gold);}

/* booth-type trio */
.booths{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin:1.6rem 0 .5rem;}
.booth{background:var(--card);border:1px solid var(--line);border-radius:20px;overflow:hidden;}
.booth svg{width:100%;aspect-ratio:4/3;}
.booth-body{padding:18px 20px 24px;}
.booth h3{margin:0 0 .35rem;font-size:1.08rem;}
.booth p{color:var(--dim);font-size:.9rem;margin:0;}
@media(max-width:860px){.booths{grid-template-columns:1fr;}}

/* price cards */
.plans{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin:1.6rem 0 1rem;}
.plan{background:var(--card);border:1px solid var(--line);border-radius:20px;padding:26px 24px 28px;display:flex;flex-direction:column;}
.plan.feat{border-color:rgba(242,184,76,.45);box-shadow:0 18px 50px -22px rgba(242,184,76,.45);}
.plan .tier{font-family:var(--sans);font-weight:700;font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;color:var(--gold);}
.plan .amount{font-family:var(--serif);font-size:2.4rem;font-weight:700;line-height:1.1;margin:.5rem 0 .1rem;}
.plan .meta{color:var(--muted);font-size:.82rem;margin-bottom:1rem;}
.plan ul{list-style:none;margin:0;}
.plan ul li{position:relative;color:var(--dim);font-size:.9rem;padding-inline-start:1.35rem;margin-bottom:.4rem;}
.plan ul li::before{content:'';position:absolute;inset-inline-start:0;top:.55em;width:6px;height:6px;border-radius:50%;background:var(--green);}
@media(max-width:900px){.plans{grid-template-columns:1fr;}}

/* tables */
.tscroll{overflow-x:auto;margin:1.2rem 0 1.4rem;-webkit-overflow-scrolling:touch;}
table.t{width:100%;border-collapse:collapse;font-size:.92rem;min-width:22rem;}
table.t th,table.t td{text-align:start;padding:.7rem .9rem;border-bottom:1px solid var(--line);}
table.t th{color:var(--ink);font-weight:700;font-size:.8rem;letter-spacing:.06em;text-transform:uppercase;}
table.t td{color:var(--dim);}
table.t td:last-child{color:var(--ink);font-weight:700;white-space:nowrap;}

.note{color:var(--muted);font-size:.85rem;margin:-.4rem 0 1.4rem;}

/* FAQ */
.faq{max-width:70ch;margin-top:1.4rem;}
.faq details{border:1px solid var(--line);border-radius:14px;background:var(--card);margin-bottom:10px;overflow:hidden;}
.faq summary{list-style:none;cursor:pointer;padding:1rem 1.2rem;font-weight:700;font-size:.95rem;color:var(--ink);display:flex;justify-content:space-between;gap:1rem;align-items:center;}
.faq summary::-webkit-details-marker{display:none;}
.faq summary::after{content:'+';color:var(--gold);font-size:1.2rem;line-height:1;flex:none;}
.faq details[open] summary::after{content:'–';}
.faq details p{color:var(--dim);font-size:.92rem;padding:0 1.2rem 1.1rem;margin:0;}

/* contact strip */
.contact{display:flex;flex-wrap:wrap;gap:.6rem 1.4rem;align-items:center;justify-content:center;color:var(--dim);font-size:.92rem;margin-top:1rem;}
.contact a{color:var(--gold);text-decoration:none;font-weight:700;}
