/* Public single-page booth site */

.site-loading {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
}
.site-notfound {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; text-align: center; padding: 24px;
}
.site-notfound h1 { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: -.02em; }
.site-notfound p { color: var(--muted); }

.site { max-width: 1080px; margin: 0 auto; padding: 0 28px 60px; }
.site-hero { max-width: 860px; margin: 0 auto; }

/* Hero */
.site-hero {
  text-align: center; padding: 84px 0 56px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.site-logo {
  width: 168px; height: 168px; border-radius: 28px; object-fit: contain;
  background: var(--surface); border: 1px solid var(--border); padding: 12px;
}
.site-hero h1 {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; letter-spacing: -.02em;
  background: linear-gradient(90deg, var(--cyan) 5%, var(--purple) 55%, var(--pink) 105%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.15;
}
.site-headline { font-size: 1.35rem; font-weight: 700; color: var(--text); max-width: 600px; line-height: 1.4; margin-bottom: 2px; }
.site-tagline { font-size: 1.08rem; color: var(--text); max-width: 540px; line-height: 1.6; }
.site-location { font-size: .85rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.site-meta { font-size: .9rem; color: var(--muted); line-height: 1.5; }

/* Public gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gallery-grid .gimg { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; }
/* Masonry: columns adapt to width/photo count (no gaps). Tiles are given a mix
   of shapes so it staggers into a real mosaic even when photos are all similar. */
.gallery-mosaic { column-width: 250px; column-gap: 12px; }
.gallery-mosaic .gimg { width: 100%; display: block; object-fit: cover; aspect-ratio: 1 / 1; border-radius: 12px; margin: 0 0 12px; break-inside: avoid; -webkit-column-break-inside: avoid; transition: transform .25s ease; }
.gallery-mosaic .gimg:nth-child(3n+1) { aspect-ratio: 3 / 4; } /* tall */
.gallery-mosaic .gimg:nth-child(4n+3) { aspect-ratio: 4 / 3; } /* short/wide */
.gallery-mosaic .gimg:nth-child(5n+5) { aspect-ratio: 2 / 3; } /* taller */
.gallery-mosaic .gimg:hover { transform: scale(1.02); }
/* Customer choices showcase */
.site-choice-group { margin-bottom: 22px; }
.site-choice-title { font-size: 1rem; font-weight: 700; color: var(--text); margin: 0 0 10px; }
.site-choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
.site-choice { margin: 0; }
.site-choice img, .site-choice-noimg { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; display: block; }
.site-choice-noimg { background: var(--surface); }
.site-choice figcaption { font-size: .82rem; color: var(--text); margin-top: 6px; text-align: center; }

.gallery-slideshow { position: relative; width: 100%; aspect-ratio: 16/10; border-radius: 16px; overflow: hidden; background: var(--surface); }
.gallery-slideshow .gss-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s ease; }
.gallery-slideshow .gss-img.on { opacity: 1; }
.gss-dots { position: absolute; bottom: 10px; left: 0; right: 0; display: flex; gap: 7px; justify-content: center; z-index: 2; }
.gss-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.5); }
.gss-dot.on { background: #fff; }
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic { column-width: 160px; column-gap: 10px; }
  .gallery-mosaic .gimg { margin-bottom: 10px; }}
.site-cta-row { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; justify-content: center; }
.site-cta-row .btn { display: inline-flex; align-items: center; gap: 8px; }
.site-cta-row .btn svg { width: 18px; height: 18px; }
.site-cta-row .btn-outline { border-color: var(--cyan); color: var(--cyan); }
.site-cta-row .btn-outline:hover { background: var(--cyan); color: #fff; border-color: var(--cyan); }

/* Sections */
.site-section { padding: 34px 0; border-top: 1px solid var(--border); }
.site-section h2 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; letter-spacing: -.01em;
  margin-bottom: 20px;
}
.site-bio { color: var(--muted); line-height: 1.75; max-width: 640px; white-space: pre-line; }

/* Packages */
.site-pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.site-pkg {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; display: flex; flex-direction: column; gap: 10px;
  transition: transform .18s, border-color .18s;
}
.site-pkg:hover { transform: translateY(-3px); border-color: rgba(0,200,212,.35); }
.site-pkg-name { font-weight: 700; font-size: 1.02rem; }
.site-pkg-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--cyan); }
.site-pkg-desc { font-size: .84rem; color: var(--muted); line-height: 1.55; }
.site-pkg-items { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.site-pkg-items li { font-size: .82rem; padding-left: 20px; position: relative; line-height: 1.5; }
.site-pkg-items li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* Add-ons */
.site-addon-list { display: flex; flex-direction: column; gap: 10px; }
.site-addon {
  display: flex; align-items: baseline; gap: 14px; padding: 14px 18px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
}
.site-addon.has-img { align-items: center; }
.site-addon-img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; flex: none; }
.site-pkg-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 10px; margin-bottom: 2px; }
.site-addon-info { flex: 1; min-width: 0; }
.site-addon-name { font-weight: 600; font-size: .92rem; }
.site-addon-desc { font-size: .78rem; color: var(--muted); margin-top: 2px; line-height: 1.5; }
.site-addon-price { font-weight: 700; color: var(--cyan); white-space: nowrap; font-variant-numeric: tabular-nums; }

/* Testimonials */
.site-testimonials { gap: 16px; }
.site-testimonials.tmt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.site-testimonials.tmt-list { display: flex; flex-direction: column; max-width: 680px; margin: 0 auto; }
.site-testimonials.tmt-carousel { display: block; }
.tmt-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.tmt-marquee-track { display: flex; gap: 18px; width: max-content; animation: tmt-scroll var(--dur, 40s) linear infinite; }
.tmt-marquee:hover .tmt-marquee-track { animation-play-state: paused; }
.tmt-marquee .site-tmt { flex: 0 0 320px; }
@keyframes tmt-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .tmt-marquee-track { animation: none; }
  .tmt-marquee { overflow-x: auto; }
}
.site-tmt { margin: 0; padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; display: flex; flex-direction: column; gap: 10px; }
.site-tmt-stars { color: #f5b301; letter-spacing: 2px; font-size: .95rem; }
.site-tmt blockquote { margin: 0; font-size: .96rem; line-height: 1.6; flex: 1; }
.site-tmt figcaption { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.site-tmt-name { font-weight: 700; font-size: .85rem; color: var(--cyan); }
.site-tmt-plat { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600; color: var(--muted); }
.site-tmt-plat-ic { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: var(--pc); color: #fff; font-size: .66rem; font-weight: 800; line-height: 1; }

/* FAQ */
.site-faq { display: flex; flex-direction: column; gap: 10px; }
.site-faq.faq-twocol { display: grid; grid-template-columns: 1fr 1fr; align-items: start; }
.site-faq.faq-open .site-faq-item summary { cursor: default; }
.site-faq.faq-open .site-faq-item summary::after { display: none; }
@media (max-width: 560px) { .site-faq.faq-twocol { grid-template-columns: 1fr; } }
.site-faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 4px 18px; }
.site-faq-item summary { cursor: pointer; font-weight: 600; padding: 14px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.site-faq-item summary::-webkit-details-marker { display: none; }
.site-faq-item summary::after { content: '+'; color: var(--cyan); font-size: 1.3rem; font-weight: 400; flex: none; transition: transform .2s; }
.site-faq-item[open] summary::after { transform: rotate(45deg); }
.site-faq-a { padding: 0 0 16px; color: var(--muted); line-height: 1.6; font-size: .92rem; white-space: pre-wrap; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border); padding: 34px 0 0; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.site-socials { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.site-social {
  display: inline-flex; align-items: center; padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--muted); text-decoration: none;
  font-size: .8rem; font-weight: 600; transition: color .15s, border-color .15s;
}
.site-social:hover { color: var(--cyan); border-color: rgba(0,200,212,.4); }
#site-website { color: var(--cyan); text-decoration: none; font-size: .85rem; }
#site-website:hover { text-decoration: underline; }
.site-powered { font-size: .72rem; color: var(--muted); }
.site-powered a { color: var(--muted); }
.site-powered a:hover { color: var(--cyan); }

/* ── Booking form ── */
.book { max-width: 760px; }
.book-hero { padding: 60px 0 34px; }
.bf-section { padding: 24px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); margin-bottom: 16px; }
.bf-section h2 { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 18px; }
.bf-section h2::before { content: ''; width: 4px; height: 19px; border-radius: 3px; background: linear-gradient(var(--cyan), var(--purple)); flex: none; }
.bf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bf-grid.single { grid-template-columns: 1fr; }
.bf-group { display: flex; flex-direction: column; gap: 7px; }
.bf-group.span2 { grid-column: span 2; }
@media (max-width: 560px) { .bf-grid { grid-template-columns: 1fr; } .bf-group.span2 { grid-column: span 1; }}
/* City / State / ZIP row under the street address (stays one row on mobile) */
.bf-addr-row { display: grid; grid-template-columns: 2fr .8fr 1fr; gap: 10px; }
.bf-label { font-size: .76rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.req { color: #f0468c; } /* lightened from --pink #e0257a to clear 4.5:1 on the dark form surface (WCAG AA) */
.bf-input {
  padding: 11px 14px; border-radius: 10px; border: 1px solid var(--border);
  background: rgba(255,255,255,.04); color: var(--text);
  font-family: var(--font-body); font-size: .92rem; width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.bf-input:focus { outline: none; border-color: rgba(0,200,212,.55); box-shadow: 0 0 0 3px rgba(0,200,212,.12); }
.bf-input.bf-invalid { border-color: #e5484d; box-shadow: 0 0 0 3px rgba(229,72,77,.16); }
.bf-invalid-grp .bf-label { color: #e5484d; }
.bf-radio-row.bf-invalid, .bf-check-input.bf-invalid { outline: 2px solid #e5484d; outline-offset: 3px; border-radius: 8px; }
.bf-section.bf-invalid { border-color: #e5484d; box-shadow: 0 0 0 3px rgba(229,72,77,.12); }
.code-style { font-family: 'Consolas', 'Menlo', monospace; text-transform: uppercase; letter-spacing: .06em; }
.bf-sig { font-style: italic; font-size: 1.08rem; letter-spacing: .02em; }

.bf-cats { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; }
.bf-cat {
  border: 1px solid var(--border); background: var(--surface); color: var(--text);
  border-radius: 999px; padding: 9px 20px; font: inherit; font-size: .92rem; font-weight: 600;
  cursor: pointer; transition: border-color .15s, background .15s, color .15s;
}
.bf-cat:hover { border-color: var(--cyan); }
.bf-cat.on { background: var(--cyan); border-color: var(--cyan); color: #fff; }

.bf-pkg-list { display: flex; flex-direction: column; gap: 12px; }
.bf-pkg {
  display: flex; gap: 14px; padding: 18px; border: 1px solid var(--border); border-radius: 14px;
  background: var(--surface); cursor: pointer; transition: border-color .15s, background .15s;
}
.bf-pkg:has(input:checked) { border-color: var(--cyan); background: rgba(0,200,212,.06); }
.bf-pkg input { accent-color: var(--cyan); width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; cursor: pointer; }
.bf-pkg-img { width: 64px; height: 64px; object-fit: contain; background: rgba(127,127,127,.08); border-radius: 10px; flex: none; cursor: zoom-in; }
.bf-pkg-body { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0; }
.bf-pkg-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.bf-pkg-name { font-weight: 700; font-size: .95rem; }
.bf-pkg-price { font-family: var(--font-display); font-weight: 800; color: var(--cyan); white-space: nowrap; }
.bf-pkg-desc { font-size: .8rem; color: var(--muted); line-height: 1.5; }
.bf-pkg-none { opacity: .9; }
.bf-pkg-feat { border-color: color-mix(in srgb, var(--cyan) 55%, var(--border)); box-shadow: 0 0 0 1px color-mix(in srgb, var(--cyan) 40%, transparent); }
.bf-pkg-flag { align-self: flex-start; font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: #fff; background: linear-gradient(90deg, var(--cyan), var(--purple)); padding: 3px 9px; border-radius: 999px; }

.bf-addon-list { display: flex; flex-direction: column; gap: 10px; }
.bf-addon {
  display: flex; align-items: center; gap: 14px; padding: 13px 16px;
  border: 1px solid var(--border); border-radius: 12px; background: var(--surface);
  cursor: pointer; transition: border-color .15s, background .15s;
}
.bf-addon:has(input:checked) { border-color: var(--cyan); background: rgba(0,200,212,.06); }
.bf-addon input { accent-color: var(--cyan); width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }
.bf-addon-img { width: 56px; height: 56px; object-fit: contain; background: rgba(127,127,127,.08); border-radius: 8px; flex: none; cursor: zoom-in; }
.bf-disclosure { margin-top: 18px; opacity: .85; }

/* Booking-form layouts (owner-selectable). Packages: list (default) / featured /
   grid. Add-ons: list (default) / grid / compact. Image-forward layouts hide the
   native control and show a check badge on the selected card. */
.pkg-lay-featured .bf-pkg, .pkg-lay-grid .bf-pkg { position: relative; flex-direction: column; align-items: stretch; padding: 0; overflow: hidden; gap: 0; }
.pkg-lay-featured .bf-pkg-img { order: -1; width: 100%; height: 210px; border-radius: 0; }
.pkg-lay-grid .bf-pkg-img { order: -1; width: 100%; height: 150px; border-radius: 0; }
.pkg-lay-featured .bf-pkg-body, .pkg-lay-grid .bf-pkg-body { padding: 16px 18px; }
.pkg-lay-featured .bf-pkg > input, .pkg-lay-grid .bf-pkg > input { position: absolute; opacity: 0; pointer-events: none; }
.pkg-lay-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; }
.pkg-lay-grid .bf-pkg-top { flex-direction: column; align-items: flex-start; gap: 3px; }
.pkg-lay-featured .bf-pkg-none, .pkg-lay-grid .bf-pkg-none { padding: 16px 18px; }
.pkg-lay-grid .bf-pkg-none { grid-column: 1 / -1; }

.addon-lay-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px; align-items: stretch; }
.addon-lay-grid .bf-addon { position: relative; flex-direction: column; align-items: stretch; padding: 0 0 12px; overflow: hidden; gap: 8px; }
.addon-lay-grid .bf-addon-img { order: -1; width: 100%; height: 120px; border-radius: 0; }
.addon-lay-grid .bf-addon-body, .addon-lay-grid .bf-addon-price { padding: 0 12px; }
.addon-lay-grid .bf-addon > input { position: absolute; opacity: 0; pointer-events: none; }
.addon-lay-compact .bf-addon { padding: 10px 14px; }
.addon-lay-compact .bf-addon-img, .addon-lay-compact .bf-addon-desc { display: none; }

.pkg-lay-featured .bf-pkg:has(input:checked)::after,
.pkg-lay-grid .bf-pkg:has(input:checked)::after,
.addon-lay-grid .bf-addon:has(input:checked)::after {
  content: '\2713'; position: absolute; top: 10px; right: 10px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--cyan); color: #fff; display: grid; place-items: center; font: 800 13px/1 var(--font-body); z-index: 2;
}
.pkg-lay-featured .bf-pkg-none::after, .pkg-lay-grid .bf-pkg-none::after { display: none !important; }

/* Booking form image lightbox: tap any package / add-on / choice photo to see
   the full image, with a select button so visitors can add from the big view.
   In embed mode the iframe can be very tall, so the overlay positions itself
   near the tapped photo instead of centering in the (huge) frame. */
.bf-lb { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 18px; background: rgba(8,8,16,.8); backdrop-filter: blur(4px); }
.bf-lb-panel { display: flex; flex-direction: column; gap: 12px; align-items: center; max-width: min(92vw, 860px); }
.bf-lb-img { max-width: 100%; max-height: 70vh; border-radius: 14px; object-fit: contain; background: rgba(127,127,127,.08); }
.bf-lb-cap { color: #fff; font-weight: 700; text-align: center; font-size: 1rem; }
.bf-lb-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.bf-lb-btn { border: 0; border-radius: 999px; padding: 11px 22px; font: 700 .9rem var(--font-body); cursor: pointer; background: linear-gradient(90deg, var(--cyan), var(--purple)); color: #fff; }
.bf-lb-btn[disabled] { opacity: .7; cursor: default; }
.bf-lb-btn.bf-lb-ghost { background: rgba(255,255,255,.14); }
.bf-lb-x { position: absolute; top: 10px; right: 14px; border: 0; background: none; color: #fff; font-size: 30px; line-height: 1; cursor: pointer; padding: 6px; }
.bf-lb-embed { position: absolute; align-items: flex-start; }
.bf-lb-embed .bf-lb-img { max-height: 520px; }

/* Public proposal page */
.pr-status { font-size: .85rem; font-weight: 700; }
.portal-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.portal-detail .pd-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.portal-detail .pd-value { font-size: .95rem; color: var(--text); margin-top: 2px; }
.pr-quote { border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; background: var(--surface); }
.pr-line { display: flex; justify-content: space-between; padding: 6px 0; font-size: .95rem; }
.pr-line.pr-muted { color: var(--muted); }
.pr-line.pr-total { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px; font-weight: 800; font-size: 1.15rem; }
.pr-line.pr-total span:last-child { color: var(--cyan); }
.pr-line.pr-deposit { font-weight: 700; color: var(--cyan); border-top: 1px dashed var(--border); margin-top: 4px; padding-top: 10px; }
.pr-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
@media (max-width: 560px) { .portal-detail-grid { grid-template-columns: 1fr; } }
.bf-addon-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.bf-addon-name { font-weight: 600; font-size: .9rem; }
.bf-addon-desc { font-size: .76rem; color: var(--muted); }
.bf-addon-price { font-weight: 700; color: var(--cyan); white-space: nowrap; font-variant-numeric: tabular-nums; }

/* Booking form: customer choices (backdrops, props, ...) */
.bf-choice-group { margin-bottom: 18px; }
.bf-opt-note { font-weight: 400; font-size: .8rem; color: var(--muted); }
.bf-choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; margin-top: 8px; }
.bf-choice { cursor: pointer; display: block; }
.bf-choice input { position: absolute; opacity: 0; pointer-events: none; }
.bf-choice-card { display: flex; flex-direction: column; height: 100%; border: 2px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--surface); transition: border-color .15s; }
.bf-choice input:checked + .bf-choice-card { border-color: var(--cyan); }
.bf-choice input:focus-visible + .bf-choice-card { outline: 2px solid var(--cyan); outline-offset: 2px; }
.bf-choice-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
img.bf-choice-img { object-fit: contain; background: rgba(127,127,127,.08); cursor: zoom-in; }
.bf-choice-noimg { display: grid; place-items: center; color: var(--muted); font-size: .72rem; background: rgba(127,127,127,.1); }
.bf-choice-name { padding: 7px 9px 2px; font-size: .82rem; font-weight: 600; }
.bf-choice-desc { padding: 0 9px 9px; font-size: .72rem; color: var(--muted); }

/* Portal: customer choices */
.pc-sub { font-size: .85rem; color: var(--muted); margin: 2px 0 16px; line-height: 1.5; }
.pc-group { margin-bottom: 18px; }
.pc-group-label { font-weight: 700; font-size: .95rem; margin-bottom: 10px; }
.pc-note { font-size: .72rem; font-weight: 500; color: var(--muted); }
.pc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
.pc-opt { cursor: pointer; display: block; }
.pc-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.pc-card { display: flex; flex-direction: column; gap: 6px; height: 100%; border: 2px solid var(--border); border-radius: 12px; padding: 8px; transition: border-color .15s, background .15s; }
.pc-opt:hover .pc-card { border-color: rgba(0,200,212,.4); }
.pc-opt input:checked + .pc-card { border-color: var(--cyan); background: rgba(0,200,212,.07); }
.pc-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; display: block; }
.pc-noimg { display: flex; align-items: center; justify-content: center; background: var(--surface); color: var(--muted); font-size: .72rem; }
.pc-name { font-weight: 600; font-size: .85rem; }
.pc-desc { font-size: .75rem; color: var(--muted); line-height: 1.4; }
.pc-msg { margin-top: 12px; font-size: .85rem; text-align: center; }
.pc-msg.good { color: #2db37a; }
.pc-msg.bad { color: #e0257a; }

/* Contracts in the client portal (view + e-sign) */
.ct-cta { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px; border: 1px solid var(--cyan); border-radius: 14px; background: color-mix(in srgb, var(--cyan) 8%, transparent); color: var(--text); font-family: inherit; font-size: 1rem; font-weight: 700; cursor: pointer; text-align: left; margin-top: 14px; text-decoration: none; transition: background .15s; }
.ct-cta:hover { background: color-mix(in srgb, var(--cyan) 14%, transparent); }
.ct-cta.ct-cta-signed { border-color: rgba(45,179,122,.45); background: rgba(45,179,122,.08); }
.ct-cta-text::after { content: ' →'; opacity: .55; }
/* Unsigned contract = needs action: make it loud, not a quiet grey pill. */
.ct-cta.ct-cta-action { border-width: 2px; border-color: #e0257a; background: color-mix(in srgb, #e0257a 12%, transparent); box-shadow: 0 0 0 4px color-mix(in srgb, #e0257a 12%, transparent); animation: ct-pulse 2s ease-in-out infinite; }
.ct-cta.ct-cta-action:hover { background: color-mix(in srgb, #e0257a 18%, transparent); }
.ct-doc-badge.ct-action { background: #e0257a; color: #fff; border-color: #e0257a; font-weight: 800; }
@keyframes ct-pulse { 0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, #e0257a 30%, transparent); } 50% { box-shadow: 0 0 0 6px color-mix(in srgb, #e0257a 0%, transparent); } }
@media (prefers-reduced-motion: reduce) { .ct-cta.ct-cta-action { animation: none; } }

/* Dedicated full-page contract signer (/sign/<token>) */
.ctp-wrap { max-width: 760px; margin: 0 auto; padding: 28px 18px 60px; min-height: 100dvh; }
.ctp-header { text-align: center; margin-bottom: 22px; }
.ctp-header .portal-logo { max-height: 56px; margin: 0 auto 10px; display: block; }
.ctp-greeting { color: var(--muted); font-size: .95rem; margin-top: 6px; }
.ctp-card { border: 1px solid var(--border); border-radius: 16px; padding: 22px 24px; margin-bottom: 18px; background: var(--surface); }
.ctp-signed-banner { display: inline-block; font-weight: 700; font-size: .82rem; color: #2db37a; background: rgba(45,179,122,.10); border: 1px solid rgba(45,179,122,.4); border-radius: 999px; padding: 5px 14px; margin-bottom: 14px; }
.ctp-success { text-align: center; padding: 10px 4px 22px; border-bottom: 1px solid var(--border); margin-bottom: 22px; }
.ctp-success-check { width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%; background: #2db37a; color: #fff; font-size: 2rem; font-weight: 800; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(45,179,122,.35); }
.ctp-success-title { font-family: var(--font-display, 'Sora', sans-serif); font-size: 1.5rem; font-weight: 700; margin: 0 0 6px; }
.ctp-success-sub { color: var(--muted); font-size: .95rem; line-height: 1.5; max-width: 440px; margin: 0 auto 18px; }
.ctp-signed-detail { opacity: .92; }
.ctp-doc-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; }
.ctp-card .ct-doc-body { max-height: none; overflow: visible; border: none; background: none; padding: 0; font-size: .95rem; line-height: 1.7; }
.ctp-sign { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.ctp-sign-head { font-size: 1.05rem; font-weight: 700; margin: 0 0 10px; }
.ctp-empty { text-align: center; color: var(--muted); padding: 20px 0; }
.ctp-back { text-align: center; margin-top: 6px; }
.ctp-back-link { color: var(--muted); font-size: .9rem; text-decoration: none; }
.ctp-back-link:hover { color: var(--text); }
.ct-doc-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.ct-doc-title { font-weight: 700; font-size: 1rem; }
.ct-doc-badge { flex: none; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 4px 10px; border-radius: 999px; background: var(--surface); color: var(--muted); border: 1px solid var(--border); }
.ct-doc-badge.ct-signed { color: #2db37a; border-color: rgba(45,179,122,.45); background: rgba(45,179,122,.10); }
.ct-doc-body { font-size: .9rem; line-height: 1.6; max-height: 360px; overflow-y: auto; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; background: var(--surface); }
.ct-doc-body img { max-width: 100%; height: auto; }
.ct-doc-body h2 { font-size: 1.1rem; margin: 14px 0 6px; }
.ct-sign { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.ct-sign-lbl { font-weight: 600; font-size: .82rem; margin-top: 4px; }
.ct-pad-wrap { position: relative; }
.ct-pad { width: 100%; height: 150px; border: 2px dashed var(--border); border-radius: 12px; background: #fff; touch-action: none; cursor: crosshair; display: block; }
.ct-pad-clear { position: absolute; top: 8px; right: 8px; font-size: .72rem; font-weight: 600; padding: 4px 10px; border: 1px solid var(--border); border-radius: 8px; background: rgba(255,255,255,.9); color: #555; cursor: pointer; }
.ct-agree { display: flex; align-items: flex-start; gap: 8px; font-size: .82rem; line-height: 1.45; color: var(--muted); cursor: pointer; }
.ct-agree input { margin-top: 2px; flex: none; }
.ct-sign-msg { font-size: .85rem; text-align: center; margin-top: 4px; }
.ct-sign-msg.bad { color: #e0257a; }
.ct-signed-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); }
.ct-signed-meta { font-size: .85rem; color: var(--muted); }
.ct-signed-img { max-height: 70px; max-width: 240px; background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 4px; }
.ct-signed-meta > div { margin-bottom: 2px; }
.ct-ua { font-size: .72rem; word-break: break-word; opacity: .8; }
.ct-consent { font-size: .78rem; font-style: italic; margin-top: 10px; color: var(--muted); }

.bf-radio-row, .bf-check-row { display: flex; flex-wrap: wrap; gap: 8px; }
.bf-opt-price { font-weight: 700; opacity: .85; }
.bf-radio {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px;
  border: 1px solid var(--border); border-radius: 999px; cursor: pointer;
  font-size: .86rem; transition: border-color .15s, background .15s;
}
.bf-radio:has(input:checked) { border-color: var(--cyan); background: rgba(0,200,212,.1); color: var(--cyan); }
.bf-radio input { accent-color: var(--cyan); cursor: pointer; }
.bf-section-head { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 22px 0 4px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.bf-section-head:first-child { margin-top: 0; }
.bf-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; padding: 4px 0; }
.bf-check input { accent-color: var(--cyan); cursor: pointer; width: 18px; height: 18px; margin-top: 2px; flex: none; }
.bf-check-label { font-size: .9rem; line-height: 1.45; }

.hp-wrap { position: absolute; left: -9999px; top: -9999px; height: 1px; overflow: hidden; }

.bf-error {
  background: rgba(224,37,122,.12); border: 1px solid rgba(224,37,122,.3); color: #f07ab0;
  border-radius: 10px; padding: 12px 16px; font-size: .86rem; margin: 18px 0 0;
}
.bf-submit { width: 100%; margin-top: 22px; }
.bf-finePrint { text-align: center; font-size: .74rem; color: var(--muted); margin-top: 12px; }

.bf-success { text-align: center; padding: 70px 0; }
.bf-success-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
  background: rgba(45,179,122,.15); border: 1px solid rgba(45,179,122,.4); color: var(--green);
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 700;
}
.bf-success h2 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 10px; }
.bf-success p { color: var(--muted); line-height: 1.6; max-width: 420px; margin: 0 auto; }

/* ── Estimate ── */
.bf-code-row { display: flex; gap: 8px; }
.bf-code-row .bf-input { flex: 1; min-width: 0; }
.bf-code-msg { font-size: .8rem; margin-top: 6px; }
.bf-code-msg.good { color: var(--green); }
.bf-code-msg.bad  { color: var(--pink); }
.bf-estimate {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 18px 22px; display: flex; flex-direction: column; gap: 9px;
}
.est-row { display: flex; justify-content: space-between; gap: 16px; font-size: .9rem; font-variant-numeric: tabular-nums; }
.est-muted { color: var(--muted); font-size: .82rem; }
.est-discount { color: var(--green); }
.est-total {
  border-top: 1px solid var(--border); padding-top: 11px; margin-top: 3px;
  font-weight: 800; font-size: 1.05rem;
}
.est-total span:last-child { font-family: var(--font-display); color: var(--cyan); }
.est-deposit { color: var(--muted); font-size: .82rem; }

/* ── Mobile ── */
@media (max-width: 560px) {
  .site, .book { padding: 0 16px 44px; }
  .site-hero { padding: 52px 0 36px; }
  .site-hero h1 { font-size: 1.65rem; }
  .site-logo { width: 128px; height: 128px; }
  .site-cta-row .btn-lg { padding: 12px 22px; font-size: .92rem; }
  .site-pkg-grid { grid-template-columns: 1fr; }
  .book-hero { padding: 44px 0 26px; }
  .bf-section { padding: 18px; }
}

/* ── Client booking portal ── */
.portal-wrap { max-width: 640px; margin: 0 auto; padding: 40px 20px 60px; }
.portal-header { text-align: center; margin-bottom: 22px; }
.portal-logo { width: 96px; height: 96px; object-fit: contain; border-radius: 16px; margin-bottom: 12px; }
.portal-biz { font-family: var(--font-display, 'Sora', sans-serif); font-size: 1.4rem; font-weight: 700; }
.portal-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 22px 22px; margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.portal-greeting { font-size: 1.05rem; font-weight: 600; margin-bottom: 12px; }
.portal-status-row { margin-bottom: 18px; }
.portal-status {
  display: inline-block; font-size: .72rem; font-weight: 700; text-transform: capitalize;
  padding: 4px 12px; border-radius: 99px; background: rgba(255,255,255,.08); color: var(--text);
}
.portal-status.st-confirmed, .portal-status.st-paid, .portal-status.st-completed { background: rgba(45,179,122,.16); color: var(--green); }
.portal-status.st-deposit { background: rgba(245,196,0,.16); color: var(--yellow); }
.portal-h2 { font-family: var(--font-display, 'Sora', sans-serif); font-size: 1.3rem; font-weight: 700; margin: 0 0 16px; padding-bottom: 12px; border-bottom: 2px solid; border-image: linear-gradient(90deg, var(--cyan), color-mix(in srgb, var(--cyan) 0%, transparent)) 1; display: flex; align-items: center; gap: 10px; }
.portal-h2::before { content: ''; flex: none; width: 4px; height: 20px; border-radius: 2px; background: var(--cyan); }
.portal-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pd-item { min-width: 0; }
.pd-lbl { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 3px; }
.pd-val { font-size: .95rem; font-weight: 600; line-height: 1.4; overflow-wrap: anywhere; }
.portal-balance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 14px; }
.pb-box { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 12px; padding: 14px 12px; text-align: center; }
.pb-lbl { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 6px; }
.pb-val { display: block; font-size: 1.15rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.pb-green { color: var(--green); }
.pb-due { color: var(--yellow); }
.portal-thankyou { text-align: center; }
.ty-head { font-family: var(--font-display, 'Sora', sans-serif); font-size: 1.25rem; font-weight: 700; }
.ty-sub { color: var(--muted); font-size: .92rem; margin-top: 4px; }
.ty-coupon { margin: 16px auto; max-width: 320px; padding: 16px; border: 2px dashed var(--cyan); border-radius: 14px; background: rgba(0,200,212,.08); }
.ty-coupon-amt { font-size: 1.3rem; font-weight: 800; color: var(--cyan); }
.ty-coupon-code { margin-top: 4px; font-size: .9rem; color: var(--text); }
.ty-btns { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.ty-btn { width: 100%; justify-content: center; }
.portal-schedule { margin-bottom: 14px; }
.ps-badge { display: inline-block; font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 2px 7px; border-radius: 99px; margin-left: 4px; vertical-align: middle; }
.ps-paid    { color: var(--green);  background: rgba(45,179,122,.18); }
.ps-partial { color: var(--yellow); background: rgba(245,196,0,.18); }
.ps-due     { color: var(--muted);  background: rgba(255,255,255,.1); }
.ps-overdue { color: #ff7a90;       background: rgba(255,92,92,.16); }
.portal-pay { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); }
.pay-choice { display: flex; gap: 10px; margin: 4px 0 16px; }
.pay-amt-btn { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 12px 10px; height: auto; line-height: 1.2; }
.pay-amt-btn .pay-amt-sub { font-size: 1.05rem; font-weight: 800; color: var(--text); }
.pay-amt-btn.active { border-color: var(--cyan); color: var(--text); box-shadow: inset 0 0 0 1px var(--cyan); }
.pay-btns { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.pay-btn { width: 100%; justify-content: center; }
.pay-venmo { background: #008CFF; }
.pay-cashapp { background: #00D632; }
.pay-paypal { background: #003087; }

/* Square payment-method tiles (client portal): brand mark on top, name below.
   auto-fit (not auto-fill) so the tiles stretch to fill the row edge to edge. */
.pay-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(86px, 1fr)); gap: 10px; margin-top: 10px; }
.pay-tile {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 6px 11px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; cursor: pointer; text-decoration: none; color: var(--text);
  font-family: inherit; transition: border-color .15s, transform .06s;
}
.pay-tile:hover { border-color: var(--cyan); }
.pay-tile:active { transform: scale(.96); }
.pay-tile[disabled] { opacity: .6; cursor: default; }
.pay-tile-logo {
  width: 52px; height: 52px; border-radius: 14px; color: #fff;
  display: flex; align-items: center; justify-content: center; line-height: 1;
  overflow: hidden;
}
.pay-tile-name { font-size: .78rem; font-weight: 600; color: var(--text); }
.pay-tile-img { width: 52px; height: 52px; border-radius: 14px; object-fit: contain; display: block; }
.tl-img { background: transparent; }
.tl-light { background: #fff; border: 1px solid var(--border); }
.tl-light .pay-tile-img { width: 38px; height: 38px; border-radius: 0; }
.tl-paypal { background: #003087; }
.tl-zelle { background: #6D1ED4; }
.tl-cash { background: #1f9d55; }
.pay-notes { margin-top: 12px; font-size: .9rem; color: var(--text); line-height: 1.6; }
.pay-note-row { margin-top: 12px; font-size: .82rem; color: var(--muted); line-height: 1.6; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pay-note-row strong { color: var(--text); }
.pay-note-copy { font-size: .72rem; font-weight: 600; cursor: pointer; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); color: var(--cyan); }
.pay-disclaimer { margin-top: 10px; font-size: .72rem; color: var(--muted); }
.pay-confirm { margin-top: 12px; padding: 12px 14px; border-radius: 10px; color: #065f46; background: #d1fae5; border: 1px solid #6ee7b7; }
.pay-confirm-head { font-size: .88rem; font-weight: 600; }
.pay-confirm-instr { margin-top: 8px; font-size: .85rem; font-weight: 500; line-height: 1.55; color: #047857; }

/* Booking lifecycle tracker (client portal) */
.portal-tracker-card { padding: 20px 14px 18px; }
.track { display: flex; align-items: flex-start; justify-content: space-between; }
.track-step { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.track-step::before { content: ''; position: absolute; top: 13px; left: -50%; width: 100%; height: 2px; background: var(--border); z-index: 0; }
.track-step:first-child::before { display: none; }
.track-dot { position: relative; z-index: 1; width: 28px; height: 28px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; background: var(--surface); border: 2px solid var(--border); color: var(--muted); }
.track-label { margin-top: 7px; font-size: .66rem; color: var(--muted); line-height: 1.25; }
.track-step.done .track-dot { background: var(--cyan); border-color: var(--cyan); color: #fff; }
.track-step.done::before, .track-step.current::before { background: var(--cyan); }
.track-step.current .track-dot { background: var(--surface); border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 0 4px rgba(0,200,212,.16); }
.track-step.current .track-label { color: var(--text); font-weight: 700; }
.track-caption { margin-top: 16px; text-align: center; font-size: .92rem; color: var(--text); line-height: 1.5; }
.portal-payments { margin-top: 6px; }
.pp-head { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 8px; }
.pp-row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-top: 1px solid var(--border); font-size: .88rem; }
.pp-amt { font-weight: 700; font-variant-numeric: tabular-nums; color: var(--green); }
.portal-contact-sub { color: var(--muted); font-size: .9rem; margin-bottom: 14px; }
.portal-cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.form-input {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border);
  background: rgba(255,255,255,.04); color: var(--text); font-family: inherit; font-size: 1rem;
}
.form-input:focus { outline: none; border-color: rgba(0,200,212,.5); }
@media (max-width: 560px) {
  .portal-wrap { padding: 28px 16px 48px; }
  .portal-detail-grid { grid-template-columns: 1fr; gap: 12px; }
  .portal-balance { grid-template-columns: 1fr; }}

/* ── Site templates (presets) ──────────────────────────────────────────────
   Each sets coordinated fonts + a default palette via CSS variables on <html>.
   The owner's accent/bg (applied inline by site.js) still override the colors. */

/* Elegant - white, serif headings, soft gold. The wedding look. */
html.theme-elegant {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --bg: #fbfaf7; --text: #2b2722;
  --muted: rgba(43,39,34,.62); --surface: rgba(0,0,0,.035); --border: rgba(43,39,34,.14);
  --cyan: #b08d57; --purple: #9c7b46; --pink: #b08d57;
}
html.theme-elegant .site-hero h1 { font-weight: 600; letter-spacing: 0; }
html.theme-elegant .site-section h2 { font-weight: 600; letter-spacing: .01em; }
html.theme-elegant .site-pkg-price { font-weight: 600; }
html.theme-elegant .btn { border-radius: 4px; letter-spacing: .04em; }

/* Bold - dark, high-contrast, punchy sans. Party-forward. */
html.theme-bold {
  --font-display: 'Archivo', 'Sora', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --bg: #0c0c11; --text: #f6f6fb;
  --muted: rgba(255,255,255,.6); --surface: rgba(255,255,255,.055); --border: rgba(255,255,255,.12);
  --cyan: #ff3d71; --purple: #c41d57; --pink: #ff3d71;
}
html.theme-bold .site-hero h1 { text-transform: uppercase; letter-spacing: -.01em; font-weight: 800; }
html.theme-bold .btn { border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }

/* Minimal - light, airy, understated. */
html.theme-minimal {
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --bg: #ffffff; --text: #161616;
  --muted: rgba(0,0,0,.55); --surface: rgba(0,0,0,.03); --border: rgba(0,0,0,.10);
  --cyan: #161616; --purple: #161616; --pink: #444444;
}
html.theme-minimal .site-hero h1 { font-weight: 700; letter-spacing: -.01em; }
html.theme-minimal .site-section h2 { font-weight: 600; letter-spacing: .14em; text-transform: uppercase; font-size: .9rem; }
html.theme-minimal .btn { border-radius: 2px; }

/* Luxe - black-tie. Black + gold, Playfair serif. Galas, luxury weddings. */
html.theme-luxe {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --bg: #0b0b0d; --text: #f3efe6;
  --muted: rgba(243,239,230,.55); --surface: rgba(255,255,255,.05); --border: rgba(200,162,74,.28);
  --cyan: #c8a24a; --purple: #a8843a; --pink: #c8a24a;
}
html.theme-luxe .site-hero h1 { font-weight: 700; letter-spacing: .01em; }
html.theme-luxe .site-section h2 { font-weight: 600; letter-spacing: .06em; }
html.theme-luxe .btn { border-radius: 3px; letter-spacing: .06em; }

/* Boho - earthy. Warm cream, terracotta + sage, Fraunces serif. Modern weddings. */
html.theme-boho {
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --bg: #f3ece1; --text: #4a4137;
  --muted: rgba(74,65,55,.62); --surface: rgba(120,90,60,.06); --border: rgba(74,65,55,.16);
  --cyan: #b5654a; --purple: #8a6b4a; --pink: #b5654a;
}
html.theme-boho .site-hero h1 { font-weight: 600; letter-spacing: 0; }
html.theme-boho .site-section h2 { font-weight: 600; }
html.theme-boho .btn { border-radius: 999px; }

/* Playful - showers & kids. Blush, rounded Fredoka, very round buttons. */
html.theme-playful {
  --font-display: 'Fredoka', 'Hanken Grotesk', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --bg: #fff5f9; --text: #3a3340;
  --muted: rgba(58,51,64,.6); --surface: rgba(255,126,182,.08); --border: rgba(58,51,64,.12);
  --cyan: #ff7eb6; --purple: #7a6cf0; --pink: #ff7eb6;
}
html.theme-playful .site-hero h1 { font-weight: 600; letter-spacing: -.01em; }
html.theme-playful .btn { border-radius: 999px; font-weight: 700; }

/* Neon - nightlife. Near-black with glowing cyan/magenta, Orbitron. Parties, NYE. */
html.theme-neon {
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --bg: #07070d; --text: #eafcff;
  --muted: rgba(234,252,255,.6); --surface: rgba(255,255,255,.05); --border: rgba(34,211,238,.3);
  --cyan: #22d3ee; --purple: #7a2bff; --pink: #ff2bd6;
}
html.theme-neon .site-hero h1 { text-transform: uppercase; letter-spacing: .02em; text-shadow: 0 0 16px rgba(34,211,238,.55), 0 0 34px rgba(255,43,214,.25); }
html.theme-neon .site-section h2 { letter-spacing: .08em; text-transform: uppercase; }
html.theme-neon .btn { border-radius: 999px; letter-spacing: .05em; box-shadow: 0 0 16px rgba(34,211,238,.4); }

/* Art Deco - 1920s glam. Navy + gold, Cinzel caps. NYE, Gatsby parties. */
html.theme-deco {
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --bg: #0e1630; --text: #f4ecd6;
  --muted: rgba(244,236,214,.58); --surface: rgba(255,255,255,.05); --border: rgba(212,175,55,.32);
  --cyan: #d4af37; --purple: #b8932c; --pink: #d4af37;
}
html.theme-deco .site-hero h1 { text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
html.theme-deco .site-section h2 { text-transform: uppercase; letter-spacing: .12em; font-size: .95rem; }
html.theme-deco .btn { border-radius: 2px; letter-spacing: .1em; text-transform: uppercase; }

/* Coastal - beachy. Sea-mist white + ocean blue, airy Manrope. */
html.theme-coastal {
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --bg: #f3f9fb; --text: #1f3a4d;
  --muted: rgba(31,58,77,.6); --surface: rgba(47,155,191,.07); --border: rgba(31,58,77,.13);
  --cyan: #2f9bbf; --purple: #277f9e; --pink: #2f9bbf;
}
html.theme-coastal .site-hero h1 { font-weight: 700; letter-spacing: -.01em; }
html.theme-coastal .btn { border-radius: 999px; }

/* Retro - 70s/80s throwback. Cream, mustard + burnt orange, chunky Bricolage. */
html.theme-retro {
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --bg: #f7eddc; --text: #4a2f1e;
  --muted: rgba(74,47,30,.62); --surface: rgba(210,105,30,.08); --border: rgba(74,47,30,.18);
  --cyan: #d2691e; --purple: #e0a528; --pink: #d2691e;
}
html.theme-retro .site-hero h1 { font-weight: 800; letter-spacing: -.01em; }
html.theme-retro .site-section h2 { font-weight: 700; }
html.theme-retro .btn { border-radius: 8px; font-weight: 700; }

/* Editorial - magazine. White, big Playfair serif headlines, sharp, roomy. */
html.theme-editorial {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --bg: #ffffff; --text: #141414;
  --muted: rgba(0,0,0,.55); --surface: rgba(0,0,0,.03); --border: rgba(0,0,0,.13);
  --cyan: #b3082f; --purple: #8a0624; --pink: #b3082f;
}
html.theme-editorial .site-hero h1 { font-weight: 700; letter-spacing: -.015em; }
html.theme-editorial .site-section h2 { text-transform: uppercase; letter-spacing: .14em; font-size: .85rem; font-weight: 600; }
html.theme-editorial .btn { border-radius: 0; letter-spacing: .04em; }

/* ── Advanced templates = STRUCTURAL layouts ───────────────────────────────
   Basic templates (the presets above) only swap colors + fonts on the standard
   single-column page. An ADVANCED template re-renders the whole page (see
   renderStructured in site.js) into a different shape - nav, a hero variant,
   re-thought sections. The structure lives here; the palette + fonts still come
   from the basic template, so the two compose. Every structural page carries
   the .lay-structured class on #site. */

.lay-structured { --lay-w: 1100px; max-width: none; margin: 0; padding: 0; }

/* Sticky nav (layouts that opt in) */
.lay-structured .lay-nav {
  position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 28px; border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 86%, transparent); backdrop-filter: blur(12px);
}
.lay-structured .lay-nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.lay-structured .lay-nav-brand img { width: 34px; height: 34px; border-radius: 8px; object-fit: contain; }
.lay-structured .lay-nav-links { display: flex; align-items: center; gap: 22px; }
.lay-structured .lay-nav-links a { color: var(--muted); text-decoration: none; font-size: .92rem; font-weight: 600; }
.lay-structured .lay-nav-links a:hover { color: var(--text); }
.lay-structured .lay-nav-book { background: var(--cyan); color: #fff !important; padding: 9px 18px; border-radius: 10px; }

/* Hero - shared bits */
.lay-structured .lay-hero-logo { width: 128px; height: 128px; border-radius: 22px; object-fit: contain; background: var(--surface); border: 1px solid var(--border); padding: 10px; }
.lay-structured .lay-hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.04; letter-spacing: -.02em; }
.lay-structured .lay-hero-headline { font-size: 1.3rem; font-weight: 700; margin-top: 12px; }
.lay-structured .lay-hero-tagline { color: var(--muted); font-size: 1.05rem; line-height: 1.65; margin-top: 10px; max-width: 560px; }
.lay-structured .lay-hero-loc { color: var(--cyan); font-weight: 700; margin-top: 14px; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; }
.lay-structured .lay-hero-meta { color: var(--muted); font-size: .9rem; margin-top: 4px; }
.lay-structured .lay-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.lay-structured .lay-hero-cta .btn { display: inline-flex; align-items: center; gap: 8px; }
.lay-structured .lay-hero-cta .btn svg { width: 18px; height: 18px; }
.lay-structured .lay-hero-cta .btn-outline { border-color: var(--cyan); color: var(--cyan); }

/* Hero variant: SPLIT - two columns (text + photo collage) */
.lay-structured .lay-hero.split {
  max-width: var(--lay-w); margin: 0 auto; padding: 60px 28px 68px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.lay-structured .lay-hero.split .lay-hero-logo { margin-bottom: 14px; }
.lay-structured .lay-hero-photos { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.lay-structured .lay-hero-photos.n1 { grid-template-columns: 1fr; }
.lay-structured .lay-hero-photos img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 16px; }

/* Hero variant: BANNER - full-bleed photo background, centered text on a scrim */
.lay-structured .lay-hero.banner {
  position: relative; min-height: 76vh; display: grid; place-items: center; text-align: center;
  padding: 80px 24px; background-image: var(--hero-img); background-size: cover; background-position: center;
}
.lay-structured .lay-hero.banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.34), rgba(0,0,0,.64)); }
.lay-structured .lay-hero.banner .lay-hero-inner { position: relative; max-width: 760px; color: #fff; }
.lay-structured .lay-hero.banner h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.6rem); }
.lay-structured .lay-hero.banner .lay-hero-headline,
.lay-structured .lay-hero.banner .lay-hero-tagline,
.lay-structured .lay-hero.banner .lay-hero-meta { color: rgba(255,255,255,.9); }
.lay-structured .lay-hero.banner .lay-hero-tagline { margin-left: auto; margin-right: auto; }
.lay-structured .lay-hero.banner .lay-hero-loc { color: #fff; }
.lay-structured .lay-hero.banner .lay-hero-cta { justify-content: center; }
.lay-structured .lay-hero.banner .lay-hero-logo { margin: 0 auto 14px; background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.3); }
.lay-structured .lay-hero.banner .btn-outline { border-color: #fff; color: #fff; }
.lay-structured .lay-hero.banner.noimg { background: var(--surface); }
.lay-structured .lay-hero.banner.noimg::before { display: none; }
.lay-structured .lay-hero.banner.noimg .lay-hero-inner, .lay-structured .lay-hero.banner.noimg h1 { color: var(--text); }
.lay-structured .lay-hero.banner.noimg .lay-hero-headline, .lay-structured .lay-hero.banner.noimg .lay-hero-tagline, .lay-structured .lay-hero.banner.noimg .lay-hero-meta { color: var(--muted); }
.lay-structured .lay-hero.banner.noimg .lay-hero-loc { color: var(--cyan); }
.lay-structured .lay-hero.banner.noimg .btn-outline { border-color: var(--cyan); color: var(--cyan); }

/* Hero variant: CENTERED - magazine column + photo strip below */
.lay-structured .lay-hero.centered { max-width: 820px; margin: 0 auto; padding: 80px 28px 36px; text-align: center; }
.lay-structured .lay-hero.centered .lay-hero-logo { margin: 0 auto 18px; border-radius: 50%; }
.lay-structured .lay-hero.centered h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
.lay-structured .lay-hero.centered .lay-hero-divider { width: 60px; height: 2px; background: var(--cyan); margin: 22px auto; }
.lay-structured .lay-hero.centered .lay-hero-tagline,
.lay-structured .lay-hero.centered .lay-hero-headline { margin-left: auto; margin-right: auto; }
.lay-structured .lay-hero.centered .lay-hero-cta { justify-content: center; }
.lay-structured .lay-hero-strip { max-width: var(--lay-w); margin: 22px auto 0; padding: 0 28px; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 10px; }
.lay-structured .lay-hero-strip img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 12px; }

/* Hero variant: LANDING - bold centered sales hero on an accent wash */
.lay-structured .lay-hero.landing { text-align: center; padding: 92px 28px 72px; background: radial-gradient(120% 140% at 50% 0%, color-mix(in srgb, var(--cyan) 16%, transparent), transparent 60%); }
.lay-structured .lay-hero.landing .lay-hero-inner { max-width: 760px; margin: 0 auto; }
.lay-structured .lay-hero.landing .lay-hero-logo { margin: 0 auto 18px; }
.lay-structured .lay-hero.landing h1 { font-size: clamp(2.8rem, 6.5vw, 4.8rem); }
.lay-structured .lay-hero.landing .lay-hero-headline { font-size: 1.45rem; }
.lay-structured .lay-hero.landing .lay-hero-tagline { margin-left: auto; margin-right: auto; }
.lay-structured .lay-hero.landing .lay-hero-cta { justify-content: center; }

/* Trust/stats strip (landing) */
.lay-structured .lay-statsband { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.lay-structured .lay-stats { max-width: var(--lay-w); margin: 0 auto; padding: 26px 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 56px; }
.lay-structured .lay-stat { text-align: center; }
.lay-structured .lay-stat-big { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--cyan); line-height: 1; }
.lay-structured .lay-stat-small { color: var(--muted); font-size: .88rem; margin-top: 6px; }

/* Packages: COLUMNS (pricing table, featured highlighted) */
.lay-structured .lay-pkg-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; align-items: start; }
.lay-structured .lay-pkg-col { position: relative; border: 1px solid var(--border); border-radius: 18px; padding: 30px 24px; display: flex; flex-direction: column; gap: 10px; background: var(--bg); }
.lay-structured .lay-pkg-col.feat { border-color: var(--cyan); box-shadow: 0 14px 40px color-mix(in srgb, var(--cyan) 16%, transparent); transform: translateY(-8px); }
.lay-structured .lay-pkg-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--cyan); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.lay-structured .lay-pkg-col-name { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; text-align: center; }
.lay-structured .lay-pkg-col-price { color: var(--cyan); font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; text-align: center; }
.lay-structured .lay-pkg-col p { color: var(--muted); font-size: .88rem; line-height: 1.5; text-align: center; }
.lay-structured .lay-pkg-col ul { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.lay-structured .lay-pkg-col li { font-size: .86rem; padding-left: 22px; position: relative; line-height: 1.5; }
.lay-structured .lay-pkg-col li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.lay-structured .lay-pkg-col .btn { margin-top: auto; text-align: center; }
.lay-structured .lay-pkg-col .btn-outline { border-color: var(--cyan); color: var(--cyan); }

/* Sticky book bar (landing) */
.lay-structured.has-stickybar { padding-bottom: 76px; }
.lay-structured .lay-stickybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 24px; border-top: 1px solid var(--border); background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(12px); }
.lay-structured .lay-stickybar-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.lay-structured .lay-stickybar .btn { display: inline-flex; align-items: center; gap: 8px; }
.lay-structured .lay-stickybar .btn svg { width: 18px; height: 18px; }

/* Shared section headings + bands + section width */
.lay-structured .lay-sec > h2, .lay-structured .lay-band > h2 { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: -.02em; text-align: center; margin-bottom: 28px; }
.lay-structured .lay-band { background: var(--surface); padding: 58px 28px; }
.lay-structured .lay-band > * { max-width: var(--lay-w); margin-left: auto; margin-right: auto; }
.lay-structured .lay-about p { max-width: 680px; margin: 0 auto; text-align: center; color: var(--muted); line-height: 1.85; font-size: 1.08rem; white-space: pre-line; }
.lay-structured .lay-sec { max-width: var(--lay-w); margin: 0 auto; padding: 58px 28px; }

/* Packages: comparison TABLE (feature matrix) */
.lay-structured .lay-cmp-wrap { overflow-x: auto; }
.lay-structured .lay-cmp { width: 100%; border-collapse: collapse; min-width: 520px; }
.lay-structured .lay-cmp th, .lay-structured .lay-cmp td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--border); }
.lay-structured .lay-cmp th:first-child, .lay-structured .lay-cmp td:first-child { text-align: left; }
.lay-structured .lay-cmp thead th { vertical-align: bottom; }
.lay-structured .lay-cmp-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.lay-structured .lay-cmp-price { display: block; color: var(--cyan); font-weight: 800; font-size: 1.25rem; margin-top: 4px; }
.lay-structured .lay-cmp-feat { color: var(--muted); font-size: .92rem; }
.lay-structured .lay-cmp-desc { color: var(--muted); font-size: .88rem; line-height: 1.5; text-align: center; }
.lay-structured .lay-yes { color: var(--cyan); font-weight: 800; }
.lay-structured .lay-no { color: var(--muted); }
.lay-structured .lay-cmp-cta td { border-bottom: none; padding-top: 18px; }

/* Packages: CARDS (filled, optional image, featured highlight) */
.lay-structured .lay-pkg-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.lay-structured .lay-pkg-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.lay-structured .lay-pkg-card.feat { border-color: var(--cyan); box-shadow: 0 0 0 2px color-mix(in srgb, var(--cyan) 30%, transparent); }
.lay-structured .lay-pkg-card > img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 12px; }
.lay-structured .lay-pkg-card-name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.lay-structured .lay-pkg-card-price { color: var(--cyan); font-weight: 800; font-size: 1.6rem; }
.lay-structured .lay-pkg-card p { color: var(--muted); font-size: .9rem; line-height: 1.55; }
.lay-structured .lay-pkg-card ul { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.lay-structured .lay-pkg-card li { font-size: .85rem; padding-left: 20px; position: relative; line-height: 1.5; }
.lay-structured .lay-pkg-card li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.lay-structured .lay-pkg-card .btn { margin-top: auto; align-self: flex-start; }

/* Packages: ROWS (stacked, magazine list) */
.lay-structured .lay-pkg-rows { max-width: 820px; margin: 0 auto; }
.lay-structured .lay-pkg-row { padding: 26px 0; border-top: 1px solid var(--border); }
.lay-structured .lay-pkg-row:first-child { border-top: none; }
.lay-structured .lay-pkg-row-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.lay-structured .lay-pkg-row-name { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; }
.lay-structured .lay-pkg-row-price { color: var(--cyan); font-weight: 800; font-size: 1.4rem; white-space: nowrap; }
.lay-structured .lay-pkg-row p { color: var(--muted); margin-top: 6px; line-height: 1.6; }
.lay-structured .lay-pkg-row ul { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 18px; }
.lay-structured .lay-pkg-row li { font-size: .88rem; color: var(--muted); padding-left: 18px; position: relative; }
.lay-structured .lay-pkg-row li::before { content: '—'; position: absolute; left: 0; color: var(--cyan); }

/* ── Sidebar layout: fixed left rail + scrolling content ── */
.lay-structured.has-rail { padding: 0; }
.lay-shell { display: grid; grid-template-columns: 312px 1fr; align-items: start; }
.lay-rail { position: sticky; top: 0; height: 100vh; overflow-y: auto; display: flex; flex-direction: column; gap: 22px; padding: 36px 28px; border-right: 1px solid var(--border); background: var(--surface); }
.lay-rail-brand { display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: var(--text); }
.lay-rail-brand img { width: 120px; height: 120px; border-radius: 20px; object-fit: contain; background: var(--bg); border: 1px solid var(--border); padding: 10px; }
.lay-rail-brand span { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; line-height: 1.12; }
.lay-rail-meta { color: var(--muted); font-size: .85rem; line-height: 1.6; }
.lay-rail-meta .loc { color: var(--cyan); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; margin-bottom: 4px; }
.lay-rail-nav { display: flex; flex-direction: column; gap: 10px; }
.lay-rail-nav a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: .98rem; }
.lay-rail-nav a:hover { color: var(--cyan); }
.lay-rail-cta { display: flex; flex-direction: column; gap: 10px; }
.lay-rail-cta .btn { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.lay-rail-cta .btn svg { width: 18px; height: 18px; }
.lay-rail-cta .btn-outline { border-color: var(--cyan); color: var(--cyan); }
.lay-rail-social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.lay-rail-social a { color: var(--muted); text-decoration: none; border: 1px solid var(--border); border-radius: 999px; padding: 5px 12px; font-size: .8rem; }
.lay-rail-powered { color: var(--muted); font-size: .74rem; }
.lay-rail-powered a { color: var(--cyan); text-decoration: none; }
.lay-main { min-width: 0; }
.lay-main-hero { padding: 56px 48px 12px; }
.lay-main-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.1; letter-spacing: -.02em; }
.lay-main-tagline { color: var(--muted); font-size: 1.15rem; line-height: 1.6; margin-top: 12px; max-width: 640px; }
.lay-main-photos { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; margin-top: 28px; }
.lay-main-photos.n1 { grid-template-columns: 1fr; }
.lay-main-photos img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; }
/* In the sidebar, sections fill the main column and align left */
.lay-shell .lay-sec, .lay-shell .lay-band { max-width: none; margin: 0; padding: 44px 48px; }
.lay-shell .lay-band > * { max-width: none; }
.lay-shell .lay-sec > h2, .lay-shell .lay-band > h2 { text-align: left; }
.lay-shell .lay-about p { margin: 0; text-align: left; max-width: 760px; }
.lay-shell .lay-faqs, .lay-shell .lay-pkg-rows { margin: 0; }
@media (max-width: 820px) {
  .lay-shell { grid-template-columns: 1fr; }
  .lay-rail { position: static; height: auto; overflow: visible; border-right: none; border-bottom: 1px solid var(--border); }
  .lay-rail-social { margin-top: 0; }
  .lay-main-hero { padding: 32px 20px 8px; }
  .lay-shell .lay-sec, .lay-shell .lay-band { padding: 32px 20px; }
}

/* Add-ons (shared) */
.lay-structured .lay-addons { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.lay-structured .lay-addon { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 12px; padding: 16px 18px; border: 1px solid var(--border); border-radius: 14px; }
.lay-structured .lay-addon-name { font-weight: 700; }
.lay-structured .lay-addon-desc { color: var(--muted); font-size: .84rem; flex: 1 1 100%; line-height: 1.5; }
.lay-structured .lay-addon-price { margin-left: auto; color: var(--cyan); font-weight: 800; }

/* Gallery (shared) */
.lay-structured .lay-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lay-structured .lay-gallery img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 14px; }

/* Reviews (shared) */
.lay-structured .lay-reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.lay-structured .lay-review { margin: 0; background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 22px; }
.lay-structured .lay-stars { color: #f5b301; letter-spacing: 2px; margin-bottom: 8px; }
.lay-structured .lay-review blockquote { margin: 0; line-height: 1.6; }
.lay-structured .lay-review figcaption { margin-top: 12px; color: var(--muted); font-weight: 600; font-size: .88rem; }

/* FAQ (shared) */
.lay-structured .lay-faqs { max-width: 760px; margin: 0 auto; }
.lay-structured .lay-faq { border-bottom: 1px solid var(--border); }
.lay-structured .lay-faq summary { cursor: pointer; padding: 16px 0; font-weight: 700; list-style: none; }
.lay-structured .lay-faq summary::-webkit-details-marker { display: none; }
.lay-structured .lay-faq-a { padding: 0 0 16px; color: var(--muted); line-height: 1.7; white-space: pre-line; }

/* Footer (shared) */
.lay-structured .lay-footer { border-top: 1px solid var(--border); padding: 42px 28px; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.lay-structured .lay-socials { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.lay-structured .lay-socials a { color: var(--muted); text-decoration: none; border: 1px solid var(--border); border-radius: 999px; padding: 6px 14px; font-size: .85rem; }
.lay-structured .lay-web { color: var(--cyan); text-decoration: none; font-weight: 600; }
.lay-structured .lay-powered { color: var(--muted); font-size: .82rem; }
.lay-structured .lay-powered a { color: var(--cyan); text-decoration: none; }

@media (max-width: 820px) {
  .lay-structured .lay-hero.split { grid-template-columns: 1fr; gap: 28px; padding: 36px 20px 44px; }
  .lay-structured .lay-hero.banner { min-height: 62vh; }
  .lay-structured .lay-hero-strip { grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: repeat(3, 1fr); }
  .lay-structured .lay-nav-links a:not(.lay-nav-book) { display: none; }
  .lay-structured .lay-nav, .lay-structured .lay-sec, .lay-structured .lay-band, .lay-structured .lay-footer { padding-left: 20px; padding-right: 20px; }
  .lay-structured .lay-gallery { grid-template-columns: repeat(2, 1fr); }
  .lay-structured .lay-stats { gap: 14px 32px; }
  .lay-structured .lay-stickybar-name { display: none; }
  .lay-structured .lay-stickybar .btn { flex: 1; justify-content: center; }
  .lay-structured .lay-pkg-col.feat { transform: none; }
}

/* Inline click-to-edit in the website builder preview (class added only there) */
.pbc-editable { outline: 1px dashed transparent; outline-offset: 3px; border-radius: 4px; cursor: text; transition: outline-color .12s ease, background .12s ease; }
.pbc-editable:hover { outline-color: var(--cyan); }
.pbc-editable:focus { outline: 2px solid var(--cyan); background: color-mix(in srgb, var(--cyan) 8%, transparent); }

/* Your-team card on the client portal */
.crew-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.crew-card { display: flex; flex-direction: column; align-items: center; text-align: center; width: 110px; }
.crew-card-av { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); margin-bottom: 8px; }
.crew-card-noav { display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; color: var(--muted); background: var(--surface); }
.crew-card-name { font-weight: 600; font-size: .92rem; line-height: 1.3; }
.crew-card-role { font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* Booking form SMS opt-in checkbox + nudge modal */
.bf-sms-consent { display: flex; gap: 12px; align-items: flex-start; margin: 6px 0 18px; cursor: pointer; text-align: left; padding: 15px 16px; border: 1.5px solid var(--accent, #0a8d98); border-radius: 12px; background: color-mix(in srgb, var(--accent, #0a8d98) 7%, transparent); transition: box-shadow .15s ease, background .15s ease; }
.bf-sms-consent:hover { background: color-mix(in srgb, var(--accent, #0a8d98) 11%, transparent); }
.bf-sms-consent:focus-within { box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent, #0a8d98) 25%, transparent); }
.bf-sms-consent input { margin-top: 2px; width: 22px; height: 22px; flex-shrink: 0; cursor: pointer; accent-color: var(--accent, #0a8d98); }
.bf-sms-consent .bf-finePrint { margin: 0; line-height: 1.55; font-size: .9rem; color: var(--text, #1a1a22); }
.bf-sms-consent a { color: var(--accent, #0a8d98); text-decoration: underline; font-weight: 600; }
.bf-modal-overlay { position: fixed; inset: 0; background: rgba(10,10,16,.55); display: flex; align-items: center; justify-content: center; padding: 20px; z-index: 1000; }
.bf-modal { background: #fff; border-radius: 16px; max-width: 420px; width: 100%; padding: 26px 24px 20px; box-shadow: 0 24px 60px rgba(0,0,0,.3); }
.bf-modal-title { font-size: 1.25rem; font-weight: 800; color: #16161f; margin: 0 0 10px; }
.bf-modal-body { font-size: .95rem; line-height: 1.6; color: #4a4a55; margin: 0 0 20px; }
.bf-modal-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }

.est-warn { margin-top: 10px; padding: 10px 12px; border-radius: 8px; font-size: .85rem; line-height: 1.45; background: #fff4ec; border: 1px solid #fec195; color: #9e4c00; }

.bf-addon-qty { flex: none; margin-left: 8px; padding: 4px 8px; border: 1px solid rgba(0,0,0,.25); border-radius: 8px; font: inherit; font-size: .85rem; font-weight: 600; background: #fff; color: #16161f; }

/* Multi-package: expanded card groups under the package list */
#bf-multi-wrap { margin: 10px 0 4px; }
.bf-extra-group { margin: 16px 0 0; padding-top: 4px; }
.bf-extra-group-head { display: flex; align-items: center; justify-content: space-between; margin: 0 0 10px; padding-top: 12px; border-top: 1px dashed rgba(0,0,0,.18); }
.bf-extra-group-head span { font-weight: 800; font-size: .95rem; }
.bf-extra-rm { border: 0; background: transparent; font: inherit; font-size: .85rem; font-weight: 600; color: #c0392b; cursor: pointer; padding: 4px 6px; }
.bf-extra-rm:hover { text-decoration: underline; }
.bf-x-cats { margin-top: 2px; }
.bf-add-pkg { margin-top: 12px; width: 100%; padding: 12px 14px; border: 1.5px dashed rgba(0,0,0,.3); border-radius: 12px; background: transparent; font: inherit; font-weight: 700; color: inherit; cursor: pointer; transition: border-color .15s ease, background .15s ease; }
.bf-add-pkg:hover { border-color: var(--accent, #0a8d98); background: color-mix(in srgb, var(--accent, #0a8d98) 6%, transparent); }
