:root {
  color-scheme: dark;
  --bg: #080b0a;
  --surface: #0f1513;
  --surface-2: #151d1a;
  --ink: #f8f3e8;
  --muted: rgba(248, 243, 232, 0.72);
  --faint: rgba(248, 243, 232, 0.52);
  --line: rgba(248, 243, 232, 0.14);
  --line-strong: rgba(248, 243, 232, 0.24);
  --tile-line: rgba(248, 243, 232, 0.28);
  --gold: #f1cf86;
  --gold-2: #c9983f;
  --red: #ed1b2f;
  --red-2: #ff4b5d;
  --green: #b7cd76;
  --accent: var(--red);
  --accent-soft: rgba(237, 27, 47, 0.16);
  --accent-strong: #ff3347;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 28px 88px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  position: relative;
  background:
    radial-gradient(circle at 12% 0%, rgba(237, 27, 47, 0.16), transparent 30%),
    radial-gradient(circle at 88% 4%, rgba(237, 27, 47, 0.12), transparent 28%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

input,
select,
textarea,
button {
  font: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 20;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: #11130f;
  background: var(--accent-strong);
  border-radius: var(--radius);
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 32px));
  min-height: 60px;
  margin: 34px auto 0;
  padding: 8px 14px 8px 18px;
  border: 1px solid rgba(255, 26, 46, 0.75);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 22, 20, 0.46), rgba(8, 11, 10, 0.3));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(18, 22, 20, 0.58), rgba(8, 11, 10, 0.42));
  border-color: #ff1a2e;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.3));
}

.brand .brand-logo {
  width: 88px;
  height: 88px;
  margin: -31px 0 -29px -7px;
  padding: 2px;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: rgba(8, 11, 10, 0.88);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.42), 0 0 0 4px rgba(237, 27, 47, 0.12);
  transform: translateY(-2px);
  animation: logo-pulse 2.6s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% {
    box-shadow:
      0 12px 34px rgba(0, 0, 0, 0.42),
      0 0 0 4px rgba(237, 27, 47, 0.14),
      0 0 14px 2px rgba(237, 27, 47, 0.22);
    border-color: var(--red);
  }
  50% {
    box-shadow:
      0 12px 34px rgba(0, 0, 0, 0.42),
      0 0 0 6px rgba(237, 27, 47, 0.38),
      0 0 30px 8px rgba(237, 27, 47, 0.6);
    border-color: #ff3347;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand .brand-logo {
    animation: none;
  }
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 0.92rem;
  font-weight: 850;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.footer-nav a {
  min-height: 42px;
  padding: 11px 12px;
  border-radius: var(--radius);
  color: rgba(248, 243, 232, 0.84);
  font-size: 0.86rem;
  font-weight: 780;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.footer-nav a:hover {
  color: var(--ink);
  background: rgba(248, 243, 232, 0.1);
}

.site-nav a.is-active {
  color: #fff;
  background: rgba(248, 243, 232, 0.18);
  box-shadow: inset 0 0 0 1px rgba(248, 243, 232, 0.14);
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--accent);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active {
  color: #fff;
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(248, 243, 232, 0.08);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 999px;
  transition: opacity 160ms ease, transform 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.site-nav a:focus-visible,
.footer-nav a:focus-visible,
.button:focus-visible,
.menu-toggle:focus-visible,
.field :is(input, select, textarea):focus-visible,
.faq-toggle:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero.compact {
  /* min-height inherits global .hero rule (100svh) — Kasia standard 2026-07-14:
     every page hero fills exactly one viewport, floating scroll arrow reveals next. */
}

/* Floating scroll-hint on Home hero (100svh) — KSP brand red variant of the ME/PN
   standard pattern. Fixed positioning so it stays visible at any zoom; auto-hide
   after user scrolls past the hero section (JS toggles .hidden). */
.hero-scroll-arrow {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--accent-strong);
  color: #fff;
  background: rgba(237, 27, 47, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 0 22px rgba(237, 27, 47, 0.7),
    0 0 44px rgba(237, 27, 47, 0.38),
    0 6px 18px rgba(0, 0, 0, 0.45);
  transition: opacity 0.3s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
  animation: hero-bounce 2s ease-in-out infinite;
  z-index: 40;
  text-decoration: none;
}

.hero-scroll-arrow:hover {
  border-color: #fff;
  background: rgba(237, 27, 47, 0.92);
  box-shadow:
    0 0 30px rgba(237, 27, 47, 0.85),
    0 0 60px rgba(237, 27, 47, 0.5),
    0 8px 22px rgba(0, 0, 0, 0.55);
  animation: none;
  transform: translateX(-50%) translateY(5px);
}

.hero-scroll-arrow svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-scroll-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero .hero-media img {
  object-fit: cover;
  object-position: center 14%;
}

.services-hero .hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 10, 10, 0.94) 0%, rgba(7, 10, 10, 0.72) 38%, rgba(7, 10, 10, 0.28) 74%),
    linear-gradient(180deg, rgba(7, 10, 10, 0.36) 0%, rgba(7, 10, 10, 0.08) 44%, rgba(7, 10, 10, 0.95) 100%);
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 132px 0 76px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-inner .eyebrow {
  font-size: 1.15rem;
  color: #ff1a2e;
  text-shadow:
    0 0 10px rgba(255, 26, 46, 0.55),
    0 0 22px rgba(255, 26, 46, 0.3);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 5.2vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.compact h1 {
  max-width: 760px;
  /* font-size inherits global h1 rule — all hero H1s across 9 pages share one scale. */
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

/* Primary CTA — always-alive red neon glow (Kasia's brand). Pulsing box-
   shadow halo pulls the eye; hover boosts to full neon + pauses pulse. */
.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow:
    0 0 22px rgba(255, 26, 46, 0.6),
    0 0 44px rgba(255, 26, 46, 0.35),
    0 14px 30px rgba(237, 27, 47, 0.4);
  animation: button-pulse 2.4s ease-in-out infinite;
}

.button-primary:hover {
  box-shadow:
    0 0 30px rgba(255, 26, 46, 0.85),
    0 0 62px rgba(255, 26, 46, 0.55),
    0 22px 44px rgba(237, 27, 47, 0.6),
    0 12px 28px rgba(237, 27, 47, 0.45);
  animation: none;
}

@keyframes button-pulse {
  0%, 100% {
    box-shadow:
      0 0 18px rgba(255, 26, 46, 0.5),
      0 0 36px rgba(255, 26, 46, 0.28),
      0 12px 26px rgba(237, 27, 47, 0.32);
  }
  50% {
    box-shadow:
      0 0 28px rgba(255, 26, 46, 0.75),
      0 0 56px rgba(255, 26, 46, 0.45),
      0 16px 34px rgba(237, 27, 47, 0.5);
  }
}

/* Dark / secondary CTA — thin red frame always visible (brand cohesion),
   boosted to full neon on hover. */
.button-dark {
  color: var(--ink);
  border-color: rgba(255, 26, 46, 0.7);
  background: rgba(248, 243, 232, 0.08);
}

.button-dark:hover {
  border-color: #ff1a2e;
  background: rgba(237, 27, 47, 0.1);
  box-shadow:
    0 0 20px rgba(255, 26, 46, 0.7),         /* tight neon halo */
    0 0 42px rgba(255, 26, 46, 0.5),         /* wide neon halo */
    0 24px 44px rgba(237, 27, 47, 0.55),     /* glow projected below */
    0 12px 26px rgba(237, 27, 47, 0.42);
}

.hero-points,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points {
  margin-top: 46px;
}

.hero-points span,
.pill-row span {
  padding: 8px 11px;
  border: 1px solid rgba(248, 243, 232, 0.16);
  border-radius: 999px;
  color: rgba(248, 243, 232, 0.78);
  background: rgba(8, 11, 10, 0.46);
  font-size: 0.82rem;
  font-weight: 750;
}

/* main creates a new stacking context above .page-orbs (z-index:0). All
   sections/cards/photos inside main paint on top of the orbs, so orbs glow
   THROUGH the semi-transparent tile backgrounds instead of covering them.
   Header (position:fixed z:10) sits above everything regardless. */
main {
  position: relative;
  z-index: 1;
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.025);
  border-block: 1px solid rgba(248, 243, 232, 0.08);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 1.04rem;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.feature-card,
.package-card,
.form-panel,
.faq-item,
.timeline-item,
.gallery-item,
.service-image-card,
.service-package-card,
.media-card,
.note-card {
  transition: border-color 200ms ease;
}

.card,
.feature-card,
.package-card,
.form-panel,
.faq-item,
.timeline-item,
.gallery-item {
  border: 1px solid var(--tile-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.18);
}

/* Kasia SMS 2026-07-14 — red hover on ALL tiles: thin red frame + soft red
   glow + subtle brighter surface. Universal cover of every card class
   (excludes .intent-card which already has its own bespoke hover). */
.card,
.feature-card,
.package-card,
.form-panel,
.faq-item,
.timeline-item,
.gallery-item,
.service-image-card,
.service-package-card,
.media-card,
.note-card,
.stat {
  transition: border-color 200ms ease, box-shadow 220ms ease, background 220ms ease;
}

.card:hover,
.feature-card:hover,
.package-card:hover,
.form-panel:hover,
.faq-item:hover,
.timeline-item:hover,
.gallery-item:hover,
.service-image-card:hover,
.service-package-card:hover,
.media-card:hover,
.note-card:hover,
.stat:hover {
  border-color: #ff1a2e;
  background: linear-gradient(180deg, rgba(237, 27, 47, 0.11), rgba(255, 75, 93, 0.05));
  box-shadow:
    0 0 0 2px #ff1a2e,                        /* thick vivid frame around tile */
    0 28px 48px rgba(237, 27, 47, 0.5),       /* glow from below */
    0 12px 28px rgba(237, 27, 47, 0.42),      /* mid glow */
    0 0 36px rgba(255, 51, 71, 0.35),         /* ambient halo */
    inset 0 1px 0 rgba(255, 255, 255, 0.12);  /* top edge highlight */
}

/* Unified tile roundness — 22px matches the Kasia photo frame. Applied via
   dedicated selector so we don't touch --radius global (which also drives
   buttons/inputs where 22px would look wrong). */
.card,
.feature-card,
.package-card,
.form-panel,
.faq-item,
.timeline-item,
.gallery-item,
.service-image-card,
.service-package-card,
.media-card,
.note-card,
.stat,
.intent-card {
  border-radius: 22px;
}

.card,
.feature-card,
.package-card,
.timeline-item {
  padding: 22px;
}

.card h3,
.feature-card h3,
.package-card h3,
.timeline-item h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.card p,
.feature-card p,
.package-card p,
.timeline-item p {
  color: var(--muted);
}

.contact-cards {
  margin-top: 28px;
}

.media-card {
  overflow: hidden;
}

.media-card img,
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.media-card .card-body {
  padding: 22px;
}

.notice-band,
.note-card {
  border: 1px solid var(--tile-line);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
}

.note-card {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
}

.note-card p {
  margin: 0;
}

.service-image-grid {
  display: grid;
  gap: 14px;
}

.service-image-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-image-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-image-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-image-grid.six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-image-card,
.service-package-card {
  overflow: hidden;
  border: 1px solid var(--tile-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.service-image-card img,
.service-package-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  background: rgba(3, 5, 5, 0.45);
}

.service-image-card > div,
.service-package-card {
  padding: 16px;
}

.service-image-card.compact {
  display: grid;
  align-content: space-between;
}

.service-image-card.compact h3 {
  margin: 0;
  padding: 12px 14px 14px;
  font-size: 1rem;
}

.service-image-card.service-wide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  align-items: center;
  margin-top: 14px;
}

.service-package-card h3,
.service-image-card h3 {
  margin: 0 0 10px;
}

.services-video-section {
  padding: 42px 0 22px;
}

.service-video-frame {
  overflow: hidden;
  border: 1px solid var(--tile-line);
  border-radius: var(--radius);
  background: rgba(3, 5, 5, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.service-video-frame video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78svh;
  background: #050706;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: center;
}

.portrait {
  overflow: hidden;
  border: 1px solid var(--tile-line);
  border-radius: var(--radius);
  background: var(--surface);
}

.portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.kasia-home-portrait {
  background: rgba(255, 255, 255, 0.035);
  border: 3px solid #ff1a2e;
  border-radius: 22px;
  box-shadow:
    0 0 12px #ff1a2e,                        /* tight inner neon halo */
    0 0 24px rgba(255, 26, 46, 0.75),        /* mid glow */
    0 0 48px rgba(255, 26, 46, 0.55),        /* wide neon halo */
    0 28px 54px rgba(237, 27, 47, 0.5),      /* projected down */
    0 14px 30px rgba(237, 27, 47, 0.35);
}

.kasia-home-portrait img {
  object-fit: cover;
  object-position: center 54%;
  background: #070a09;
}

.quote {
  margin: 28px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--red);
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.list-clean {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.list-clean li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--tile-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.stat strong {
  display: block;
  color: var(--accent-strong);
  font-size: 1.4rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.proof-strip {
  padding: 0 24px 40px;
  background: linear-gradient(180deg, rgba(8, 11, 10, 0), rgba(237, 27, 47, 0.08));
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), 100%);
  margin: 40px auto 0;
  overflow: hidden;
  border: 1px solid var(--tile-line);
  border-radius: 20px;
  background: rgba(248, 243, 232, 0.12);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.proof-inner div {
  min-width: 0;
  padding: 20px;
  background: rgba(12, 16, 15, 0.78);
  text-align: center;
}

.proof-inner strong,
.intent-card span {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-inner span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

.compact-section {
  padding-top: 74px;
}

.section-head.wide-head {
  grid-template-columns: minmax(0, 1fr);
  max-width: 930px;
}

.section-head.wide-head h2 {
  max-width: 880px;
}

.section-head.wide-head p {
  max-width: 820px;
}

.intent-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 14px;
}

.intent-card {
  display: flex;
  min-height: 238px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--tile-line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(237, 27, 47, 0.18), rgba(15, 21, 19, 0.92) 48%),
    rgba(15, 21, 19, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.intent-card:hover {
  transform: translateY(-2px);
  border-color: #ff1a2e;
  background:
    linear-gradient(145deg, rgba(237, 27, 47, 0.28), rgba(15, 21, 19, 0.94) 52%),
    rgba(15, 21, 19, 0.94);
  box-shadow:
    0 0 0 2px #ff1a2e,
    0 28px 48px rgba(237, 27, 47, 0.5),
    0 12px 28px rgba(237, 27, 47, 0.42),
    0 0 36px rgba(255, 51, 71, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.intent-card span {
  color: var(--red-2);
}

.intent-card h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.intent-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.ai-summary {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(237, 27, 47, 0.1), rgba(8, 11, 10, 0.1)),
    rgba(248, 243, 232, 0.03);
  border-block: 1px solid rgba(248, 243, 232, 0.08);
}

.summary-panel {
  padding: 6px;
  border: 1px solid var(--tile-line);
  border-radius: var(--radius);
  background: rgba(8, 11, 10, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.summary-panel dl {
  display: grid;
  margin: 0;
}

.summary-panel div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 17px 18px;
  border-bottom: 1px solid rgba(248, 243, 232, 0.1);
}

.summary-panel div:last-child {
  border-bottom: 0;
}

.summary-panel dt {
  color: var(--faint);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-panel dd {
  margin: 0;
  color: #fff;
  font-weight: 760;
}

.cta-band {
  padding: 86px 24px 102px;
  border-top: 1px solid rgba(248, 243, 232, 0.12);
  background:
    linear-gradient(135deg, rgba(237, 27, 47, 0.24), rgba(8, 11, 10, 0.94) 58%),
    url("/assets/gallery/bar-set-ups-27.png") center / cover;
}

.cta-band-inner {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.cta-band h2 {
  margin: 8px 0 14px;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.cta-band p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 1.05rem;
}

.timeline {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.timeline-item {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
}

.timeline-item::before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-weight: 900;
}

.cocktail-section {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.cocktail-section h2 {
  margin: 0;
  color: var(--accent-strong);
  font-size: 1rem;
  text-transform: uppercase;
}

.cocktail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cocktail-list li {
  padding: 8px 10px;
  border: 1px solid var(--tile-line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
}

.cocktail-section.with-images {
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: start;
}

.cocktail-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cocktail-menu-card {
  overflow: hidden;
  border: 1px solid var(--tile-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.cocktail-menu-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1191 / 507;
  object-fit: cover;
}

.cocktail-menu-card .cocktail-list {
  padding: 12px;
}

.cocktail-menu-card .cocktail-list li {
  padding: 7px 9px;
  font-size: 0.82rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.gallery-section {
  padding: 34px 0 58px;
}

.gallery-section .section-inner {
  width: min(1320px, calc(100% - 28px));
}

.gallery-section .gallery-filters {
  gap: 6px;
  margin-bottom: 12px;
}

.gallery-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.gallery-filters button {
  min-height: 38px;
  border: 1px solid var(--tile-line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.gallery-filters button.is-active {
  color: #fff;
  background: var(--accent);
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  cursor: zoom-in;
}

.gallery-grid .gallery-item img {
  aspect-ratio: 1 / 1;
  height: auto;
}

.gallery-item figcaption {
  padding: 8px 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
}

.faq-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 850;
}

.faq-toggle span {
  flex: 0 0 auto;
  color: var(--accent-strong);
  font-size: 1.25rem;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.booking-side {
  position: sticky;
  top: 112px;
}

.form-panel {
  padding: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.group-label {
  color: rgba(248, 243, 232, 0.86);
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--tile-line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(8, 11, 10, 0.64);
  padding: 11px 12px;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.check-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 5px 8px;
  border: 1px solid var(--tile-line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.8rem;
  line-height: 1.2;
}

.check-pill input {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  min-height: 0;
  margin: 0;
  accent-color: var(--accent);
}

.booking-section {
  padding-top: 56px;
}

.booking-form-modern {
  display: grid;
  gap: 18px;
}

.booking-notes {
  padding: 20px;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
}

.form-status {
  border: 1px solid var(--tile-line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.92rem;
}

.form-status.success {
  border-color: rgba(77, 214, 139, 0.45);
  background: rgba(77, 214, 139, 0.12);
}

.form-status.error {
  border-color: rgba(226, 45, 45, 0.58);
  background: rgba(226, 45, 45, 0.12);
}

.form-section {
  display: grid;
  gap: 14px;
  border: 1px solid var(--tile-line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.022);
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section-title span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(226, 45, 45, 0.5);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 900;
}

.form-section-title h3 {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.choice-stack {
  display: grid;
  gap: 12px;
}

.choice-stack fieldset,
.form-section fieldset {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.choice-stack legend,
.form-section legend {
  margin-bottom: 8px;
  color: rgba(248, 243, 232, 0.9);
  font-size: 0.86rem;
  font-weight: 800;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.option-grid.mini {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-options {
  display: grid;
  gap: 8px;
}

.service-choice {
  display: grid;
  grid-template-columns: 16px minmax(92px, 0.22fr) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid var(--tile-line);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
}

.service-choice input {
  width: 14px;
  height: 14px;
  margin: 3px 0 0;
  accent-color: var(--accent);
}

.service-choice strong {
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0;
}

.service-choice span {
  font-size: 0.86rem;
  line-height: 1.45;
}

.cocktail-picker {
  display: grid;
  gap: 8px;
}

.cocktail-picker details {
  border: 1px solid var(--tile-line);
  border-radius: var(--radius);
  background: rgba(8, 11, 10, 0.38);
  overflow: clip;
}

.cocktail-picker summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.cocktail-picker summary::-webkit-details-marker {
  display: none;
}

.cocktail-picker summary::before {
  content: "+";
  width: 18px;
  color: var(--accent);
}

.cocktail-picker details[open] summary::before {
  content: "-";
}

.cocktail-picker summary span {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.cocktail-picker .option-grid {
  padding: 0 12px 12px;
}

.booking-disclaimer {
  border-left: 3px solid var(--accent);
  padding: 2px 0 2px 13px;
  color: var(--muted);
  font-size: 0.9rem;
}

.booking-disclaimer p {
  margin: 0 0 6px;
}

.booking-submit {
  justify-self: start;
}

.booking-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 58px 16px;
  background: rgba(3, 5, 5, 0.94);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 1180px);
  max-height: calc(100vh - 116px);
  border: 1px solid rgba(248, 243, 232, 0.22);
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.62);
}

.lightbox button {
  position: absolute;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(248, 243, 232, 0.26);
  border-radius: 50%;
  color: #fff;
  background: rgba(8, 11, 10, 0.72);
  cursor: pointer;
}

.lightbox button:hover {
  background: var(--accent);
}

.lightbox-close {
  top: 16px;
  right: 16px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-count {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  color: rgba(248, 243, 232, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-note {
  margin: 18px 0 0;
  color: var(--faint);
  font-size: 0.88rem;
}

.site-footer {
  border-top: 1px solid rgba(248, 243, 232, 0.1);
  background: #070a09;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 24px;
  min-height: 124px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--tile-line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(237, 27, 47, 0.7);
  color: #fff;
  background: var(--accent);
}

.social-links img {
  width: 19px;
  height: 19px;
}

.site-footer p {
  margin: 0;
  color: rgba(248, 243, 232, 0.58);
  font-size: 0.84rem;
  text-align: right;
}

@media (max-width: 980px) {
  .site-header {
    width: min(100% - 24px, var(--max));
    min-height: 68px;
    margin-top: 10px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 11, 10, 0.96);
    box-shadow: var(--shadow);
  }

  .js .site-nav {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .js .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
  }

  .section-head,
  .split,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-side {
    position: static;
  }

  .grid-3,
  .grid-4,
  .stats,
  .proof-inner,
  .intent-grid,
  .service-image-grid.three,
  .service-image-grid.four,
  .service-image-grid.six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-image-grid.two,
  .service-image-card.service-wide {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    object-position: 63% center;
  }

  .about-hero .hero-media img {
    object-fit: cover;
    object-position: center 14%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 10, 10, 0.94) 0%, rgba(7, 10, 10, 0.68) 60%, rgba(7, 10, 10, 0.38) 100%),
      linear-gradient(180deg, rgba(7, 10, 10, 0.48) 0%, rgba(7, 10, 10, 0.1) 44%, rgba(7, 10, 10, 0.96) 100%);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
    padding: 34px 0;
  }

  .footer-nav {
    justify-content: start;
  }

  .social-links {
    justify-content: start;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .brand .brand-logo {
    width: 78px;
    height: 78px;
    margin: -29px 0 -27px -6px;
    padding: 2px;
    transform: translateY(-4px);
  }

  .brand-copy span {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero.compact {
    min-height: 600px;
  }

  .hero-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 24px, var(--max));
  }

  .hero-inner {
    padding-top: 118px;
    padding-bottom: 52px;
  }

  .hero-actions,
  .inline-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .lightbox {
    padding: 64px 10px 58px;
  }

  .lightbox img {
    max-height: calc(100vh - 132px);
  }

  .lightbox button {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .stats,
  .proof-inner,
  .intent-grid,
  .form-grid,
  .check-grid,
  .option-grid,
  .option-grid.mini,
  .service-image-grid.three,
  .service-image-grid.four,
  .service-image-grid.six {
    grid-template-columns: 1fr;
  }

  .service-choice {
    grid-template-columns: 16px minmax(0, 1fr);
  }

  .service-choice span {
    grid-column: 2;
  }

  .form-section {
    padding: 13px;
  }

  .cocktail-section {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cocktail-section.with-images {
    grid-template-columns: 1fr;
  }

  .cocktail-card-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .proof-strip {
    padding: 0 12px 24px;
  }

  .proof-inner {
    margin-top: 24px;
  }

  .summary-panel div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .cta-band {
    padding: 68px 16px 82px;
  }

  .gallery-section {
    padding: 24px 0 42px;
  }

  .gallery-section .section-inner {
    width: min(100% - 16px, var(--max));
  }

  .gallery-grid {
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ── Home page-wide red orbs (Kasia SMS 2026-07-14) ─────────────────────────
   8 blurred red gradient blobs spread across the ENTIRE Home page (not just
   hero). Positioned absolute inside .page-orbs container which spans full
   body height. z-index:0 puts them above body background but below every
   section (which sits at z-index:auto in normal flow — orbs bleed through
   any section that has transparent/glass background = ambient red glow
   under the tiles/cards throughout the page).
   pointer-events:none = clicks pass through. mix-blend-mode:screen = orbs
   brighten what's below rather than covering it. Home-only via <div
   class="page-orbs"> injected only in index.html (subpages don't have it). */
.page-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.page-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.78;
  will-change: transform;
}
.page-orbs .orb-p1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(237, 27, 47, 0.9), transparent 65%);
  top: 110vh; left: -6%;
  animation: orb-drift-p1 26s ease-in-out infinite;
}
.page-orbs .orb-p2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255, 51, 71, 0.85), transparent 62%);
  top: 145vh; right: 8%;
  animation: orb-drift-p2 32s ease-in-out infinite;
}
.page-orbs .orb-p3 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(237, 27, 47, 0.8), transparent 68%);
  top: 210vh; left: 32%;
  animation: orb-drift-p3 24s ease-in-out infinite;
}
.page-orbs .orb-p4 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255, 75, 93, 0.95), transparent 70%);
  top: 280vh; right: 2%;
  animation: orb-drift-p4 20s ease-in-out infinite;
}
.page-orbs .orb-p5 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(237, 27, 47, 0.88), transparent 66%);
  top: 340vh; left: 10%;
  animation: orb-drift-p5 28s ease-in-out infinite;
}
.page-orbs .orb-p6 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255, 51, 71, 0.85), transparent 64%);
  top: 400vh; right: 28%;
  animation: orb-drift-p6 22s ease-in-out infinite;
}
.page-orbs .orb-p7 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(237, 27, 47, 0.75), transparent 68%);
  top: 460vh; left: 46%;
  animation: orb-drift-p7 30s ease-in-out infinite;
}
.page-orbs .orb-p8 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 75, 93, 1), transparent 70%);
  top: 520vh; left: 4%;
  animation: orb-drift-p8 18s ease-in-out infinite;
}
@keyframes orb-drift-p1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(70px, -40px) scale(1.1); } }
@keyframes orb-drift-p2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-60px, 60px) scale(0.92); } }
@keyframes orb-drift-p3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(90px, 50px) scale(1.14); } }
@keyframes orb-drift-p4 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-50px, -70px) scale(0.88); } }
@keyframes orb-drift-p5 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(80px, 40px) scale(1.12); } }
@keyframes orb-drift-p6 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-70px, -50px) scale(0.94); } }
@keyframes orb-drift-p7 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px, -60px) scale(1.16); } }
@keyframes orb-drift-p8 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px, 70px) scale(1.08); } }

@media (prefers-reduced-motion: reduce) {
  .page-orbs .orb { animation: none; }
}

/* ── Home hero — living red orbs (Kasia SMS 2026-07-14) ─────────────────────
   Floating blurred red gradient blobs behind hero content — signature Kasia
   brand ambience. Positioned inside .hero (position:relative, overflow:hidden
   clips them at the section edges). z-index 1 = above overlay, DOM order below
   hero-inner (z:2) so content stays crisp. pointer-events:none so clicks pass
   through. Home-only via .hero > .orb selector (subpages use .hero.compact
   which does not carry orb children). */
.hero > .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.88;
  will-change: transform;
}
.hero > .orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(237, 27, 47, 0.95) 0%, rgba(237, 27, 47, 0) 65%);
  top: 8%;
  left: -6%;
  animation: orb-drift-1 22s ease-in-out infinite;
}
.hero > .orb-2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 51, 71, 0.85) 0%, rgba(255, 51, 71, 0) 62%);
  top: 46%;
  right: -12%;
  animation: orb-drift-2 28s ease-in-out infinite;
}
.hero > .orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 75, 93, 0.95) 0%, rgba(255, 75, 93, 0) 68%);
  bottom: 6%;
  left: 26%;
  animation: orb-drift-3 18s ease-in-out infinite;
}
.hero > .orb-4 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(237, 27, 47, 1) 0%, rgba(237, 27, 47, 0) 70%);
  top: 30%;
  left: 42%;
  animation: orb-drift-4 24s ease-in-out infinite;
}

@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(80px, 60px) scale(1.12); }
}
@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-90px, -70px) scale(0.9); }
}
@keyframes orb-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(50px, -40px) scale(1.18); }
}
@keyframes orb-drift-4 {
  0%, 100% { transform: translate(0, 0) scale(0.95); opacity: 0.5; }
  50%      { transform: translate(-40px, 50px) scale(1.15); opacity: 0.75; }
}

@media (prefers-reduced-motion: reduce) {
  .hero > .orb {
    animation: none;
  }
}

/* ── Bookings page — Kasia SMS 2026-07-14 ─────────────────────────────────── */
/* "Tell us about the event." h2 in the form panel — reduce by ~half so the
   form heading doesn't visually compete with the sidebar h2 ("Booking notes"). */
.booking-form-modern .section-head h2 {
  font-size: clamp(1rem, 2vw, 2rem);
}

/* Call CTA in the booking sidebar — more breathing room from the list above. */
.booking-notes .button-primary {
  margin-top: 28px;
}
