:root {
  --ink: #261052;
  --plum: #3b1a78;
  --plum-2: #4c2596;
  --purple: #6d31c9;
  --violet: #7b3fe4;
  --lilac: #c8b1ff;
  --lilac-soft: #ece2fd;
  --cream: #f6f2fd;
  --paper: #ffffff;
  --text: #1f1a2b;
  --muted: #625a73;
  --line: #e8e0f3;
  --line-dark: rgba(226, 212, 255, 0.14);
  --wa: #1fa855;
  --radius: 18px;
  --shadow:
    0 1px 2px rgba(38, 16, 82, 0.06), 0 12px 32px -12px rgba(38, 16, 82, 0.18);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:
    "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    sans-serif;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 500;
  line-height: 1.12;
}
h1,
h2 {
  font-family: var(--serif);
  letter-spacing: -0.02em;
}
p {
  margin: 0;
}

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: 24px;
}
@media (max-width: 480px) {
  .wrap {
    padding-inline: 18px;
  }
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--violet);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 8px;
  z-index: 100;
}
.skip:focus {
  left: 8px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 600 15px/1 var(--sans);
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:focus-visible {
  outline: 3px solid var(--lilac);
  outline-offset: 3px;
}
.btn-sm {
  padding: 10px 16px;
  font-size: 14px;
}
.btn-block {
  width: 100%;
}
.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 28px -12px rgba(0, 0, 0, 0.45);
}
.btn-light:hover {
  background: var(--lilac-soft);
}
.btn-ghost {
  color: var(--cream);
  border-color: rgba(226, 212, 255, 0.35);
}
.btn-ghost:hover {
  border-color: var(--lilac);
  color: #fff;
}
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--plum-2);
}
.btn-outline {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}
.btn-outline:hover {
  border-color: var(--ink);
}
.btn-whatsapp {
  background: var(--wa);
  color: #fff;
  padding: 17px 24px;
  font-size: 16px;
}
.btn-whatsapp:hover {
  background: #179447;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(38, 16, 82, 0.96);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-dark);
  padding-top: env(safe-area-inset-top, 0px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
}
.brand img {
  width: 40px;
  height: 40px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-top: 5px;
  font-weight: 600;
}
.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  color: rgba(245, 240, 255, 0.78);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover {
  color: var(--lilac);
}
@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
  }
}
@media (max-width: 420px) {
  .header-cta span {
    display: none;
  }
  .header-cta {
    padding: 11px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      1200px 500px at 85% -10%,
      rgba(157, 100, 255, 0.3),
      transparent 60%
    ),
    linear-gradient(180deg, var(--ink) 0%, var(--plum) 100%);
  color: var(--cream);
  padding: 72px 0 96px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(226, 212, 255, 0.07) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, #000 20%, transparent 90%);
  -webkit-mask-image: linear-gradient(180deg, #000 20%, transparent 90%);
}
.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  left: -160px;
  bottom: -260px;
  background: radial-gradient(circle, rgba(123, 63, 228, 0.55), transparent 65%);
  filter: blur(10px);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lilac);
  background: rgba(123, 63, 228, 0.1);
  border: 1px solid rgba(123, 63, 228, 0.28);
  padding: 7px 14px;
  border-radius: 999px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lilac);
  box-shadow: 0 0 0 4px rgba(200, 177, 255, 0.2);
}
.hero h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  margin: 0 0 20px;
  font-weight: 500;
  color: #fff;
}
.lede {
  font-size: clamp(17px, 1.6vw, 19.5px);
  color: rgba(245, 240, 255, 0.8);
  max-width: 34ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 30px;
}
.hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: rgba(245, 240, 255, 0.85);
}
.hero-points svg {
  width: 18px;
  height: 18px;
  color: var(--lilac);
}

/* Hall card */
.hall-card {
  margin: 0;
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--line-dark);
  border-radius: 26px;
  padding: 22px 22px 18px;
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hall-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  margin-bottom: 16px;
}
.hall-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(245, 240, 255, 0.6);
  font-weight: 600;
}
.hall-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lilac);
  font-weight: 600;
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lilac);
  animation: pulse 1.6s ease-in-out infinite;
}
.hall-live.is-full {
  color: #e2d5ff;
}
.hall-live.is-full .pulse {
  background: #e2d5ff;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(200, 177, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(200, 177, 255, 0);
  }
}

.stage {
  display: grid;
  grid-template-columns: 22px 1fr 22px;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}
.speaker {
  height: 64px;
  border-radius: 6px;
  background: #1a0b3a;
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.speaker i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(200, 177, 255, 0.55);
}
.hall-card.is-live .speaker i {
  animation: thump 0.9s ease-in-out infinite;
}
.hall-card.is-live .speaker i:nth-child(2) {
  animation-delay: 0.45s;
}
@keyframes thump {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
    border-color: var(--lilac);
  }
}
.screen {
  aspect-ratio: 16 / 7;
  border-radius: 10px;
  padding: 4px;
  background: linear-gradient(
    135deg,
    rgba(200, 177, 255, 0.5),
    rgba(123, 63, 228, 0.5)
  );
  box-shadow: 0 0 40px -6px rgba(200, 177, 255, 0.35);
}
.screen-inner {
  height: 100%;
  border-radius: 7px;
  background: radial-gradient(120% 120% at 20% 0%, #4a2489 0%, #1a0b3a 70%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 7%;
  gap: 6px;
  overflow: hidden;
}
.screen-tag {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  color: var(--lilac);
  font-weight: 700;
}
.screen-title {
  font-family: var(--serif);
  font-size: clamp(15px, 2vw, 22px);
  color: #fff;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.screen-title.swap {
  opacity: 0;
  transform: translateY(6px);
}
.screen-bar {
  width: 45%;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.screen-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--lilac);
  border-radius: 4px;
  transition: width 0.2s linear;
}

.seats {
  display: grid;
  grid-template-columns: repeat(5, 1fr) 12px repeat(5, 1fr);
  gap: 6px 6px;
}
.seat {
  aspect-ratio: 1.15 / 1;
  border-radius: 5px 5px 3px 3px;
  background: rgba(226, 212, 255, 0.09);
  border: 1px solid rgba(226, 212, 255, 0.12);
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.3, 1.6, 0.5, 1);
}
.seat.on {
  background: var(--lilac);
  border-color: #fff;
  transform: scale(1.04);
}
.aisle {
  width: 12px;
}
.hall-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  flex-wrap: wrap;
}
.count {
  font-family: var(--serif);
  font-size: 34px;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.count-of {
  font-family: var(--serif);
  font-size: 20px;
  color: rgba(245, 240, 255, 0.45);
}
.count-label {
  display: block;
  font-size: 12.5px;
  color: rgba(245, 240, 255, 0.6);
  margin-top: 4px;
}
.hall-status {
  display: flex;
  gap: 8px;
}
.chip {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  color: rgba(245, 240, 255, 0.45);
  transition: all 0.3s;
}
.chip.on {
  color: #e2d5ff;
  border-color: rgba(226, 213, 255, 0.35);
  background: rgba(226, 213, 255, 0.08);
}

@media (max-width: 960px) {
  .hero {
    padding: 48px 0 72px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .lede {
    max-width: 46ch;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 38px;
  }
  .hero-actions .btn {
    flex: 1 1 100%;
  }
  .hall-card {
    padding: 16px 14px 14px;
    border-radius: 20px;
  }
  .seats {
    gap: 4px;
    grid-template-columns: repeat(5, 1fr) 8px repeat(5, 1fr);
  }
  .stage {
    grid-template-columns: 16px 1fr 16px;
    gap: 10px;
  }
}

/* ---------- Facts ---------- */
.facts {
  background: var(--violet);
  color: #fff;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.fact {
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}
.fact:first-child {
  border-left: 0;
}
.fact-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
  font-weight: 500;
}
.fact-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.78;
}
@media (max-width: 720px) {
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fact:nth-child(3) {
    border-left: 0;
  }
  .fact:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }
}

/* ---------- Sections ---------- */
.section {
  padding: 104px 0;
}
.section-warm {
  background: var(--cream);
}
.section-dark {
  background: var(--ink);
  color: var(--cream);
}
@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }
}
.kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}
.kicker-light {
  color: var(--lilac);
}
.section h2 {
  font-size: clamp(32px, 4vw, 48px);
}
.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
}
.split-body p {
  font-size: 18px;
  color: var(--muted);
}
.split-body p + p {
  margin-top: 18px;
}
.split-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.split-tags span {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--plum);
}
@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Amenities */
.amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.amenity {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s;
}
.amenity:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #cdb9f0;
}
.icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--lilac);
  margin-bottom: 22px;
}
.icon svg {
  width: 28px;
  height: 28px;
}
.amenity h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.amenity p {
  color: var(--muted);
  font-size: 15.5px;
}
@media (max-width: 960px) {
  .amenities {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .amenities {
    grid-template-columns: 1fr;
  }
}

/* Uses */
.uses {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.use {
  position: relative;
  border-radius: var(--radius);
  padding: 30px 26px 32px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    background-color 0.25s;
}
.use::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--accent);
}
.use::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -40px;
  bottom: -55px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.1;
  transition: opacity 0.25s;
}
.use:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
}
.use:hover::after {
  opacity: 0.22;
}
.use-1 {
  --accent: #c8b1ff;
}
.use-2 {
  --accent: #f0abfc;
}
.use-3 {
  --accent: #a5b4fc;
}
.use-4 {
  --accent: #ffffff;
}
.use-num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--accent);
}
.use h3 {
  font-family: var(--serif);
  font-size: 27px;
  margin: 36px 0 12px;
  color: #fff;
}
.use p {
  font-size: 15px;
  color: rgba(245, 240, 255, 0.7);
  position: relative;
}
@media (max-width: 1000px) {
  .uses {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .uses {
    grid-template-columns: 1fr;
  }
  .use h3 {
    margin-top: 20px;
  }
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: s;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--line) 0 8px,
    transparent 8px 16px
  );
}
.steps li {
  position: relative;
  text-align: center;
  padding: 0 10px;
}
.step-n {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  background: var(--paper);
  border: 2px solid var(--violet);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
}
.steps h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.steps p {
  color: var(--muted);
  max-width: 32ch;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .steps::before {
    display: none;
  }
}

/* Booking */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.book-copy p:not(.kicker) {
  color: var(--muted);
  font-size: 17.5px;
  margin-top: 18px;
  max-width: 42ch;
}
.phone-big {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.1;
}
.phone-big small {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.phone-ico {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--violet);
  color: #fff;
  flex: none;
}
.phone-big:hover .phone-ico {
  background: var(--plum-2);
}

.book-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
  min-width: 0;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.opt {
  font-weight: 400;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  font: 400 16px/1.4 var(--sans);
  color: var(--text);
  padding: 13px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  width: 100%;
  min-width: 0;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%23625a73' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field textarea {
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(123, 63, 228, 0.14);
}
.field input.invalid {
  border-color: #c2553a;
}
.form-error {
  color: #b24a31;
  font-size: 14px;
  font-weight: 600;
  margin: -4px 0 14px;
}
.form-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 14px;
}
@media (max-width: 900px) {
  .book-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 480px) {
  .book-form {
    padding: 22px 18px;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Location */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.loc-copy > p:not(.kicker) {
  color: var(--muted);
  font-size: 17.5px;
  margin-top: 18px;
}
.addr {
  font-style: normal;
  display: flex;
  gap: 14px;
  margin-top: 28px;
  padding: 20px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  line-height: 1.55;
}
.addr strong {
  color: var(--ink);
}
.addr-ico {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lilac);
  display: grid;
  place-items: center;
}
.loc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.map {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: var(--cream);
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 900px) {
  .loc-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
}
.faq-aside {
  color: var(--muted);
  margin-top: 18px;
  font-size: 17px;
}
.faq-aside a {
  color: var(--purple);
  font-weight: 600;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-child {
  border-top: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-weight: 600;
  font-size: 17.5px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  border-radius: 50%;
  background: var(--paper)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 1v10M1 6h10' stroke='%23261052' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E")
    center no-repeat;
  border: 1px solid var(--line);
  transition: transform 0.25s ease;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--lilac-soft);
}
.faq details p {
  color: var(--muted);
  padding: 0 44px 24px 0;
}
@media (max-width: 860px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Final CTA */
.cta {
  background: linear-gradient(135deg, var(--plum) 0%, var(--ink) 70%);
  color: var(--cream);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 60px solid rgba(123, 63, 228, 0.08);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.cta h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 44px);
  color: #fff;
  max-width: 20ch;
}
.cta p {
  color: rgba(245, 240, 255, 0.72);
  margin-top: 12px;
  font-size: 17px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 480px) {
  .cta-actions {
    width: 100%;
  }
  .cta-actions .btn {
    flex: 1 1 100%;
  }
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(245, 240, 255, 0.7);
  border-top: 1px solid var(--line-dark);
  padding: 64px 0 calc(28px + env(safe-area-inset-bottom, 0px));
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-brand p {
  margin-top: 18px;
  max-width: 34ch;
}
.footer h4 {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: 14px;
  font-weight: 700;
}
.footer a {
  text-decoration: none;
}
.footer a:hover {
  color: var(--lilac);
}
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  font-size: 13.5px;
  color: rgba(245, 240, 255, 0.5);
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile action bar */
.mobile-bar {
  display: none;
}
@media (max-width: 720px) {
  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(38, 16, 82, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--line-dark);
    transform: translateY(110%);
    transition: transform 0.3s ease;
  }
  .mobile-bar.show {
    transform: none;
  }
  .mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
  }
  .mb-call {
    background: #fff;
    color: var(--ink);
  }
  .mb-wa {
    background: var(--wa);
    color: #fff;
  }
  .footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
