/* ==========================================================================
   Event Center Frisco — Site Design System
   Self-contained stylesheet for the public frontend (no framework).
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --c-ink: #221b40;
  --c-ink-soft: #37305a;
  --c-text: #453e66;
  --c-muted: #6f6890;
  --c-bg: #ffffff;
  --c-tint: #f7f5fb;
  --c-tint-2: #f1edf8;
  --c-line: #e7e2f1;
  --c-brand: #8c2fc7;
  --c-brand-deep: #6d1fa8;
  --c-brand-2: #d90e90;
  --c-gold: #d9a441;
  --c-dark: #191333;
  --c-dark-2: #221a44;
  --c-on-dark: #d5cfea;
  --c-success: #12805c;
  --c-success-bg: #e7f6f0;
  --c-warn: #9a5b06;
  --c-warn-bg: #fdf3e2;
  --c-danger: #b3261e;
  --c-danger-bg: #fdeceb;
  --c-info: #21579b;
  --c-info-bg: #e9f1fc;
  --grad-brand: linear-gradient(115deg, #7b2ff7 0%, #b91bbf 55%, #d90e90 100%);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --fs-h1: clamp(2.35rem, 5vw, 3.85rem);
  --fs-h2: clamp(1.85rem, 3.4vw, 2.65rem);
  --fs-h3: clamp(1.4rem, 2.4vw, 1.85rem);
  --fs-h4: 1.22rem;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(34, 27, 64, 0.08);
  --shadow: 0 10px 30px -12px rgba(34, 27, 64, 0.22);
  --shadow-lg: 0 24px 60px -20px rgba(34, 27, 64, 0.35);
  --header-h: 76px;
  --container: 1240px;
  --container-wide: 1440px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}
img, svg, video, iframe { max-width: 100%; }
img { height: auto; border: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--c-ink);
  line-height: 1.16;
  margin: 0 0 0.6em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
p { margin: 0 0 1.1em; }
a { color: var(--c-brand); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--c-brand-2); }
ul, ol { margin: 0 0 1.2em; padding-left: 1.3em; }
strong { color: var(--c-ink); }
::selection { background: rgba(140, 47, 199, 0.22); }
:focus-visible { outline: 3px solid rgba(140, 47, 199, 0.5); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 3000;
  background: var(--c-ink); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: #fff; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.container-wide { max-width: var(--container-wide); }
.section { padding: clamp(64px, 8vw, 108px) 0; }
.section-tight { padding: clamp(44px, 5vw, 68px) 0; }
.section-tint { background: var(--c-tint); }
.section-dark {
  background: radial-gradient(1200px 500px at 85% -10%, rgba(123, 47, 247, 0.32), transparent 60%),
              radial-gradient(900px 420px at 8% 110%, rgba(217, 14, 144, 0.20), transparent 60%),
              var(--c-dark);
  color: var(--c-on-dark);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark strong { color: #fff; }
.sec-head { max-width: 720px; margin-bottom: clamp(30px, 4vw, 52px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head p { color: var(--c-muted); font-size: 1.09rem; }
.section-dark .sec-head p { color: var(--c-on-dark); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-brand); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-brand); border-radius: 2px; }
.section-dark .eyebrow { color: #e6a3ff; }
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 36px; } .mt-5 { margin-top: 52px; }
.mb-0 { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 800; font-size: 0.95rem; letter-spacing: 0.02em;
  padding: 15px 30px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1.2; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn[disabled], .btn.is-disabled { opacity: 0.55; cursor: not-allowed; pointer-events: none; }
.btn-primary {
  background: var(--grad-brand); color: #fff;
  box-shadow: 0 12px 26px -12px rgba(159, 26, 177, 0.65);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 18px 32px -12px rgba(159, 26, 177, 0.75); }
.btn-outline { background: transparent; color: var(--c-ink); border-color: #cfc7e4; }
.btn-outline:hover { border-color: var(--c-brand); color: var(--c-brand); }
.btn-light { background: #fff; color: var(--c-ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { color: var(--c-brand); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost-light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.35); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.2); color: #fff; }
.btn-success { background: var(--c-success); color: #fff; }
.btn-success:hover { background: #0d6b4c; color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 38px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }
.link-arrow { font-weight: 800; display: inline-flex; align-items: center; gap: 7px; }
.link-arrow::after { content: "→"; transition: transform .18s ease; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
/* Blur lives on a pseudo-element: backdrop-filter on the header itself would make it
   the containing block for the position:fixed mobile drawer, breaking the menu. */
.site-header::before {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -1;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.site-header.is-scrolled { border-bottom-color: var(--c-line); box-shadow: 0 6px 24px -18px rgba(34,27,64,.4); }
.header-inner { display: flex; align-items: center; gap: 16px; min-height: var(--header-h); flex-wrap: nowrap; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--c-ink); }
.brand:hover { color: var(--c-ink); }
.brand-mark { width: 46px; height: 46px; object-fit: contain; border-radius: 10px; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; line-height: 1.05; letter-spacing: -0.01em; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 700; font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--c-brand); margin-top: 3px; }
.site-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
.nav-list a {
  display: block; padding: 9px 11px; border-radius: 9px; white-space: nowrap;
  color: var(--c-ink-soft); font-weight: 700; font-size: 0.9rem;
}
.nav-list a:hover { color: var(--c-brand); background: var(--c-tint); }
.nav-list a.is-active { color: var(--c-brand); background: var(--c-tint-2); }
.header-cta { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.nav-toggle {
  display: none; margin-left: auto;
  width: 46px; height: 46px; border: 1px solid var(--c-line); border-radius: 12px;
  background: #fff; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--c-ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1150px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .site-nav {
    position: fixed; top: var(--header-h); right: 0; bottom: 0; left: 0; z-index: 999;
    background: #fff; padding: 26px 22px 40px; overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .25s ease, opacity .25s ease, visibility .25s;
  }
  body.nav-open .site-nav { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list a { font-size: 1.08rem; padding: 14px 12px; border-bottom: 1px solid var(--c-tint-2); border-radius: 0; }
  .nav-mobile-cta { display: grid; gap: 12px; margin-top: 22px; }
}
@media (min-width: 1151px) { .nav-mobile-cta { display: none; } }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; display: flex; align-items: center;
  min-height: min(88vh, 820px); padding: clamp(90px, 12vh, 150px) 0 110px;
  background-size: cover; background-position: center;
  color: #fff; isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(19, 12, 42, 0.92) 0%, rgba(25, 15, 52, 0.72) 45%, rgba(30, 16, 60, 0.35) 100%);
}
.hero-inner { max-width: 780px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; border-radius: 999px; padding: 8px 18px;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  backdrop-filter: blur(6px); margin-bottom: 26px;
}
.hero-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--c-gold); }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: #f3c66f; }
.hero-lead { font-size: clamp(1.06rem, 1.6vw, 1.24rem); color: rgba(255,255,255,0.88); max-width: 620px; margin-bottom: 34px; }
.hero-stats {
  position: relative; z-index: 5;
  margin-top: clamp(-64px, -5vw, -44px);
}
.hero-stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-line); overflow: hidden;
}
.stat { padding: 26px 22px; text-align: center; border-left: 1px solid var(--c-line); }
.stat:first-child { border-left: 0; }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(1.5rem, 2.4vw, 2.1rem); color: var(--c-ink); line-height: 1.1; }
.stat span { font-size: 0.85rem; font-weight: 700; color: var(--c-muted); letter-spacing: 0.05em; text-transform: uppercase; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative; padding: clamp(66px, 9vw, 110px) 0; color: #fff;
  background-size: cover; background-position: center; isolation: isolate;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(19, 12, 42, 0.94), rgba(43, 21, 78, 0.78));
}
.page-hero h1 { color: #fff; margin: 10px 0 8px; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .page-hero-lead { color: rgba(255,255,255,0.85); max-width: 640px; margin: 0; font-size: 1.06rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; font-size: 0.86rem; font-weight: 700; }
.breadcrumbs a { color: rgba(255,255,255,0.75); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs li + li::before { content: "/"; margin: 0 8px 0 2px; color: rgba(255,255,255,0.4); }
.breadcrumbs [aria-current] { color: #f3c66f; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.card-pad { padding: clamp(22px, 3vw, 34px); }

.feature-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  padding: 30px 26px; transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--c-tint-2); color: var(--c-brand); margin-bottom: 18px; font-size: 1.35rem;
}
.feature-card h3 { font-size: 1.14rem; margin-bottom: 8px; }
.feature-card p { color: var(--c-muted); font-size: 0.97rem; margin: 0; }

/* Event type cards */
.etype-card {
  position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 4.6; isolation: isolate; box-shadow: var(--shadow-sm);
}
.etype-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.etype-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(19, 12, 42, 0.88) 100%);
}
.etype-card:hover img { transform: scale(1.06); }
.etype-label {
  position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2;
  color: #fff; font-weight: 800; font-size: 1.05rem; font-family: var(--font-body); line-height: 1.3;
}
.etype-label small { display: block; font-weight: 700; font-size: 0.76rem; color: #f3c66f; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 3px; }

/* Package cards */
.pkg-grid { align-items: stretch; }
.pkg-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  padding: 34px 30px; position: relative; transition: transform .2s ease, box-shadow .2s ease;
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pkg-card.pkg-featured { border: 2px solid transparent; background:
  linear-gradient(#fff, #fff) padding-box, var(--grad-brand) border-box;
  box-shadow: var(--shadow);
}
.pkg-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-brand); color: #fff; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.pkg-name { font-family: var(--font-body); font-weight: 800; font-size: 1.02rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-brand); margin-bottom: 10px; }
.pkg-price { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 3vw, 2.6rem); color: var(--c-ink); line-height: 1; margin-bottom: 4px; }
.pkg-price small { font-size: 0.9rem; font-family: var(--font-body); font-weight: 700; color: var(--c-muted); }
.pkg-desc { color: var(--c-muted); font-size: 0.95rem; margin-bottom: 16px; }
.pkg-meta { font-size: 0.85rem; color: var(--c-muted); margin-bottom: 18px; display: grid; gap: 4px; }
.pkg-list { list-style: none; margin: 0 0 26px; padding: 18px 0 0; border-top: 1px solid var(--c-line); display: grid; gap: 10px; flex: 1; }
.pkg-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.97rem; }
.pkg-list li::before { content: "✓"; color: var(--c-success); font-weight: 800; flex: 0 0 auto; }

/* Add-on cards */
.addon-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease;
}
.addon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.addon-card img { width: 100%; height: 190px; object-fit: cover; }
.addon-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.addon-body h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.02rem; margin: 0; }
.addon-price { color: var(--c-brand); font-weight: 800; font-size: 1.06rem; }
.addon-price.free { color: var(--c-success); }
.addon-body p { color: var(--c-muted); font-size: 0.9rem; margin: 0; }

/* Testimonials */
.tst-slider { position: relative; max-width: 820px; margin: 0 auto; }
.tst-card { display: none; text-align: center; padding: 10px 16px; }
.tst-card.is-active { display: block; animation: tstIn .5s ease; }
@keyframes tstIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.tst-quote { font-family: var(--font-display); font-size: clamp(1.2rem, 2.2vw, 1.55rem); font-weight: 600; color: var(--c-ink); line-height: 1.5; margin-bottom: 22px; }
.section-dark .tst-quote { color: #fff; }
.tst-stars { color: var(--c-gold); font-size: 1.1rem; letter-spacing: 4px; margin-bottom: 12px; }
.tst-who b { color: var(--c-ink); font-size: 1rem; }
.section-dark .tst-who b { color: #fff; }
.tst-who span { color: var(--c-muted); font-size: 0.9rem; }
.section-dark .tst-who span { color: var(--c-on-dark); }
.tst-dots { display: flex; justify-content: center; gap: 9px; margin-top: 26px; }
.tst-dots button {
  width: 10px; height: 10px; padding: 0; border-radius: 50%; border: 0; cursor: pointer;
  background: #cfc7e4; transition: background .2s ease, transform .2s ease;
}
.tst-dots button.is-active { background: var(--c-brand); transform: scale(1.3); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1 / 1; cursor: zoom-in; isolation: isolate;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item::after {
  content: "+"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 2rem; color: #fff; background: rgba(25, 15, 52, 0.45); opacity: 0; transition: opacity .25s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.07); }
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mosaic .gallery-item:nth-child(1), .mosaic .gallery-item:nth-child(2) { grid-column: span 2; aspect-ratio: 2 / 1.15; }

/* Lightbox */
.glb {
  position: fixed; inset: 0; z-index: 2000; display: none;
  background: rgba(15, 10, 32, 0.94); align-items: center; justify-content: center; padding: 40px;
}
.glb.is-open { display: flex; }
.glb img { max-width: min(1100px, 92vw); max-height: 84vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.glb-caption { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.85); font-size: 0.95rem; padding: 0 60px; }
.glb-btn {
  position: absolute; z-index: 2; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: #fff;
  font-size: 1.4rem; cursor: pointer; display: grid; place-items: center; transition: background .2s ease;
}
.glb-btn:hover { background: rgba(255,255,255,0.25); }
.glb-close { top: 22px; right: 22px; }
.glb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.glb-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- Accordion (FAQ) ---------- */
.accordion { display: grid; gap: 14px; }
.acc-item { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s ease; }
.acc-item.is-open { box-shadow: var(--shadow); border-color: #d8cdf0; }
.acc-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 20px 24px; font-family: var(--font-body); font-size: 1.05rem; font-weight: 800; color: var(--c-ink);
}
.acc-q:hover { color: var(--c-brand); }
.acc-icon {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; background: var(--c-tint-2); color: var(--c-brand);
  font-size: 1.15rem; line-height: 1; transition: transform .25s ease, background .25s ease, color .25s ease;
}
.acc-item.is-open .acc-icon { transform: rotate(45deg); background: var(--grad-brand); color: #fff; }
.acc-a { display: none; padding: 0 24px 22px; color: var(--c-text); }
.acc-item.is-open .acc-a { display: block; }
.acc-a p:last-child { margin-bottom: 0; }

/* ---------- Forms ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 800; font-size: 0.9rem; color: var(--c-ink); margin-bottom: 7px; }
.field .hint { display: block; font-size: 0.82rem; color: var(--c-muted); margin-top: 6px; }
.req { color: var(--c-danger); }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
input[type="date"], input[type="time"], select, textarea {
  width: 100%; padding: 13px 16px; font-family: var(--font-body); font-size: 1rem; color: var(--c-ink);
  background: #fff; border: 1.5px solid #d8d2e8; border-radius: 11px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--c-brand); box-shadow: 0 0 0 4px rgba(140, 47, 199, 0.13);
}
textarea { resize: vertical; min-height: 110px; }
select { appearance: auto; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 18px; }
.field-row-3 { grid-template-columns: repeat(3, 1fr); }
.check {
  display: flex; align-items: flex-start; gap: 10px; font-size: 0.97rem; cursor: pointer; font-weight: 500;
}
.check input { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--c-brand); flex: 0 0 auto; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 18px; }
.is-invalid { border-color: var(--c-danger) !important; animation: shake .45s; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

/* Notices / alerts */
.notice { border-radius: var(--radius); padding: 16px 20px; margin: 0 0 18px; font-size: 0.96rem; border: 1px solid transparent; }
.notice h4, .notice h5, .notice h6 { font-family: var(--font-body); font-weight: 800; font-size: 0.99rem; margin-bottom: 6px; }
.notice ul { margin: 6px 0 0; padding-left: 1.2em; }
.notice-info { background: var(--c-info-bg); color: #1d4076; border-color: #c8dcf5; }
.notice-info h4, .notice-info h5, .notice-info h6, .notice-info strong { color: #1d4076; }
.notice-warn { background: var(--c-warn-bg); color: #7a4a06; border-color: #f2ddb5; }
.notice-warn h4, .notice-warn h5, .notice-warn h6, .notice-warn strong { color: #7a4a06; }
.notice-danger { background: var(--c-danger-bg); color: #8f1d16; border-color: #f4c9c5; }
.notice-danger h4, .notice-danger h5, .notice-danger h6, .notice-danger strong { color: #8f1d16; }
.notice-success { background: var(--c-success-bg); color: #0d5c43; border-color: #bfe6d8; }
.notice-success h4, .notice-success h5, .notice-success h6, .notice-success strong { color: #0d5c43; }

/* ---------- Booking wizard ---------- */
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; padding: 6px 0 8px; overflow-x: auto; }
.step { display: flex; flex-direction: column; align-items: center; min-width: 92px; }
.step-dot {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--c-tint-2); color: var(--c-muted); font-weight: 800; font-size: 1.05rem;
  border: 2px solid transparent; transition: all .25s ease;
}
.step-label { margin-top: 8px; font-size: 0.8rem; font-weight: 700; color: var(--c-muted); text-align: center; }
.step.active .step-dot { background: var(--grad-brand); color: #fff; box-shadow: 0 8px 18px -8px rgba(159, 26, 177, 0.7); }
.step.active .step-label { color: var(--c-brand); }
.step.completed .step-dot { background: var(--c-success); color: #fff; }
.step-line { flex: 0 0 clamp(30px, 7vw, 90px); height: 2px; background: var(--c-line); margin-top: 23px; }
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: tstIn .35s ease; }
.wizard-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: clamp(22px, 3.4vw, 40px); }
.wizard-title { font-family: var(--font-body); font-weight: 800; font-size: 1.25rem; margin-bottom: 18px; }

/* Time slots */
.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.time-slot {
  border: 2px solid var(--c-line); border-radius: var(--radius); background: #fff;
  padding: 15px 12px; text-align: center; cursor: pointer; transition: all .2s ease; font-size: 0.97rem;
}
.time-slot strong { display: block; color: var(--c-ink); }
.time-slot .slot-state { font-size: 0.8rem; font-weight: 700; color: var(--c-success); }
.time-slot:hover { border-color: var(--c-brand); box-shadow: var(--shadow-sm); }
.time-slot.selected { border-color: var(--c-brand); background: linear-gradient(0deg, rgba(140,47,199,.08), rgba(140,47,199,.08)); }
.time-slot.selected strong { color: var(--c-brand); }
.time-slot.unavailable { background: #faf1f3; border-color: #eed3d9; cursor: not-allowed; opacity: 0.85; }
.time-slot.unavailable:hover { box-shadow: none; }
.time-slot.unavailable .slot-state { color: var(--c-danger); }
.time-slot .slot-note { font-size: 0.76rem; color: var(--c-muted); }
.slot-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.slot-chip {
  display: inline-flex; align-items: center; gap: 6px; background: var(--c-tint-2); color: var(--c-brand-deep);
  font-size: 0.86rem; font-weight: 800; border-radius: 999px; padding: 7px 14px;
}

/* Availability calendar */
.calendar-shell { max-width: 1080px; margin: 0 auto; }
.calendar-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 24px; flex-wrap: wrap; }
.calendar-nav .cal-title { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--c-ink); min-width: 210px; text-align: center; }
.calendar-month { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: clamp(14px, 2.6vw, 30px); }
.calendar-weekdays, .calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.calendar-weekdays { margin-bottom: 8px; }
.calendar-weekday { text-align: center; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; color: var(--c-muted); text-transform: uppercase; padding: 6px 0; }
.calendar-day {
  min-height: 92px; border-radius: 12px; padding: 8px 6px; position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 0.92rem; cursor: pointer; border: 2px solid transparent; overflow: hidden;
  transition: transform .16s ease, box-shadow .16s ease;
}
.calendar-day-number { font-weight: 800; }
.calendar-day:not(.calendar-day-empty):not(.calendar-day-past):not(.calendar-day-blocked):hover {
  transform: translateY(-2px) scale(1.03); box-shadow: var(--shadow); z-index: 3;
}
.calendar-day-empty { background: transparent; cursor: default; }
.calendar-day-past { background: var(--c-tint); color: #b9b3cf; cursor: not-allowed; }
.calendar-day-available { background: #e9f8f0; border-color: #bde7d0; color: #17603f; }
.calendar-day-available:hover { background: #d8f3e5; }
.calendar-day-booked { background: #fdf3e2; border-color: #f0d9a8; color: #7a4a06; }
.calendar-day-blocked { background: #fdeceb; border-color: #f3c4c0; color: #8f1d16; cursor: not-allowed; }
.calendar-day-times { width: 100%; display: grid; gap: 3px; }
.calendar-day-time {
  font-size: 0.62rem; font-weight: 700; line-height: 1.25; text-align: center;
  background: rgba(255,255,255,0.65); border-radius: 5px; padding: 2px 3px; word-break: break-word;
}
.calendar-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 26px; margin-top: 22px; }
.legend-item { display: inline-flex; align-items: center; gap: 9px; font-size: 0.92rem; font-weight: 700; color: var(--c-ink-soft); }
.legend-box { width: 18px; height: 18px; border-radius: 6px; border: 2px solid transparent; }
.legend-available { background: #e9f8f0; border-color: #bde7d0; }
.legend-booked { background: #fdf3e2; border-color: #f0d9a8; }
.legend-blocked { background: #fdeceb; border-color: #f3c4c0; }

/* Cost summary */
.cost-card { background: var(--c-tint); border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 24px 26px; }
.cost-card h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.05rem; margin-bottom: 14px; }
.cost-table { width: 100%; border-collapse: collapse; font-size: 0.97rem; }
.cost-table td { padding: 7px 0; }
.cost-table td:last-child { text-align: right; font-weight: 800; color: var(--c-ink); }
.cost-total td { border-top: 2px solid #d8d2e8; padding-top: 12px; font-weight: 800; color: var(--c-ink); }
.cost-total td:last-child { color: var(--c-brand); font-size: 1.15rem; }
.cost-advance td { color: var(--c-warn); }
.text-success { color: var(--c-success) !important; }
.text-danger { color: var(--c-danger) !important; }
.text-muted { color: var(--c-muted) !important; }

/* Signature */
.signature-pad-wrapper { border: 2px dashed #cfc7e4; border-radius: var(--radius); background: #fff; width: 100%; max-width: 620px; }
.signature-canvas { display: block; width: 100%; height: 160px; cursor: crosshair; border-radius: var(--radius); }

/* Spinner */
.spinner {
  width: 44px; height: 44px; margin: 0 auto; border-radius: 50%;
  border: 4px solid var(--c-tint-2); border-top-color: var(--c-brand);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Prose (CMS / policy content) ---------- */
.prose { max-width: 820px; }
.prose h1, .prose h2, .prose h3, .prose h4 { margin-top: 1.6em; }
.prose h1:first-child, .prose h2:first-child, .prose h3:first-child, .prose h4:first-child, .prose p:first-child { margin-top: 0; }
.prose p, .prose li { font-size: 1.03rem; line-height: 1.8; }
.prose ul, .prose ol { margin-bottom: 1.3em; }
.prose li { margin-bottom: 0.45em; }
.prose a { text-decoration: underline; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4em 0; }
.prose th, .prose td { border: 1px solid var(--c-line); padding: 10px 14px; text-align: left; }
.prose blockquote { border-left: 4px solid var(--c-brand); margin: 1.4em 0; padding: 6px 0 6px 20px; color: var(--c-muted); }

/* ---------- Tables ---------- */
.table-hours { width: 100%; border-collapse: collapse; }
.table-hours th, .table-hours td { padding: 12px 16px; border-bottom: 1px solid var(--c-line); text-align: left; font-size: 0.99rem; }
.table-hours th { color: var(--c-ink); font-weight: 800; }
.table-hours tr:last-child td, .table-hours tr:last-child th { border-bottom: 0; }
.table-hours td:last-child { text-align: right; font-weight: 700; color: var(--c-ink); }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--radius-lg); padding: clamp(38px, 6vw, 72px) clamp(24px, 5vw, 64px);
  background: radial-gradient(900px 400px at 90% -20%, rgba(243, 198, 111, 0.25), transparent 55%), var(--grad-brand);
  color: #fff; text-align: center; box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 28px; }

/* ---------- Contact ---------- */
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--c-line); }
.contact-item:last-child { border-bottom: 0; }
.contact-icon { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px; display: grid; place-items: center; background: var(--c-tint-2); color: var(--c-brand); font-size: 1.15rem; }
.contact-item b { display: block; color: var(--c-ink); font-size: 0.99rem; }
.contact-item a, .contact-item span { color: var(--c-text); font-size: 0.98rem; }
.contact-item a:hover { color: var(--c-brand); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--c-line); line-height: 0; }
.map-embed iframe { width: 100%; height: 430px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-dark); color: var(--c-on-dark); padding: clamp(54px, 7vw, 84px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 0.8fr 1fr 1fr; gap: 40px; padding-bottom: 46px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-weight: 800; font-size: 0.98rem; letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer p { color: var(--c-on-dark); font-size: 0.97rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { color: var(--c-on-dark); font-size: 0.97rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; font-size: 0.97rem; }
.footer-contact a { color: var(--c-on-dark); }
.footer-contact a:hover { color: #fff; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; margin-bottom: 16px; }
.footer-brand img { width: 52px; height: 52px; object-fit: contain; border-radius: 10px; background: rgba(255,255,255,0.08); }
.footer-brand .brand-name { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.12);
  transition: background .2s ease, transform .2s ease;
}
.footer-social a:hover { background: var(--grad-brand); transform: translateY(-2px); color: #fff; }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; font-size: 0.88rem; }
.footer-bottom a { color: var(--c-on-dark); }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; margin: 0; padding: 0; }

/* ---------- Snackbar / toast ---------- */
.snackbar-region { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2500; display: grid; gap: 10px; width: min(520px, calc(100vw - 40px)); }
.toast {
  background: var(--c-ink); color: #fff; border-radius: 12px; padding: 14px 20px;
  box-shadow: var(--shadow-lg); font-size: 0.95rem; font-weight: 600;
  animation: toastIn .3s ease;
}
.toast-success { background: var(--c-success); }
.toast-danger { background: var(--c-danger); }
@keyframes toastIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* PWA install button */
.pwa-install-btn {
  position: fixed; bottom: 22px; right: 22px; z-index: 1500; display: none;
  align-items: center; gap: 8px; border: 0; cursor: pointer;
  background: var(--c-ink); color: #fff; font-family: var(--font-body); font-weight: 800; font-size: 0.88rem;
  padding: 12px 20px; border-radius: 999px; box-shadow: var(--shadow-lg);
  transition: transform .2s ease;
}
.pwa-install-btn:hover { transform: translateY(-2px); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Split layouts ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); line-height: 0; aspect-ratio: 16 / 9; }
.video-embed iframe { width: 100%; height: 100%; border: 0; }
.checklist { list-style: none; margin: 0 0 1.4em; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--c-ink-soft); }
.checklist li::before {
  content: "✓"; flex: 0 0 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  background: var(--c-success-bg); color: var(--c-success); font-weight: 800; font-size: 0.9rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat { border-top: 1px solid var(--c-line); }
  .stat:nth-child(-n+2) { border-top: 0; }
}
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  /* Package cards always get a full-width single column on phones */
  .pkg-grid, .grid-4.pkg-grid, .grid-3.pkg-grid { grid-template-columns: 1fr; }
  .pkg-card { padding: 28px 24px; }
  /* Testimonials: calmer type on small screens */
  .tst-card { padding: 6px 2px; }
  .tst-quote { font-size: 1.06rem; line-height: 1.7; margin-bottom: 16px; }
  .tst-stars { font-size: 0.95rem; letter-spacing: 3px; margin-bottom: 8px; }
  .tst-dots { margin-top: 18px; }
  .tst-dots button { width: 12px; height: 12px; }
  .field-row, .field-row-3 { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .mosaic .gallery-item:nth-child(-n+2) { grid-column: span 2; }
  .calendar-day { min-height: 64px; font-size: 0.8rem; padding: 5px 3px; }
  .calendar-day-time { display: none; }
  .calendar-day-booked::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #d98e04; }
  .map-embed iframe { height: 320px; }
}
@media (max-width: 420px) {
  .brand-mark { width: 40px; height: 40px; }
  .brand-name { font-size: 1.02rem; }
  .brand-name small { letter-spacing: 0.22em; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-4.pkg-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 0; padding: 84px 0 96px; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
  .btn { padding: 13px 22px; font-size: 0.9rem; }
  .btn-lg { padding: 15px 28px; font-size: 0.95rem; }
  .slot-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .steps { justify-content: flex-start; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .pwa-install-btn, .snackbar-region { display: none !important; }
}
