:root {
  --blue-950: #061220;
  --blue-900: #071a2e;
  --blue-850: #09233d;
  --blue-800: #0c2b48;
  --blue-700: #0f3e63;
  --blue-600: #1f6f9a;
  --baby-500: #8fdcff;
  --baby-400: #aee8ff;
  --baby-300: #c8f1ff;
  --baby-100: #eaf9ff;
  --ice: #f7fcff;
  --white: #ffffff;
  --ink: #0b1724;
  --muted: #637383;
  --muted-dark: rgba(235, 249, 255, 0.72);
  --line: rgba(11, 23, 36, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(6, 18, 32, 0.16);
  --shadow-blue: 0 24px 70px rgba(143, 220, 255, 0.22);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --header-height: 82px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(143, 220, 255, 0.28), transparent 34rem),
    radial-gradient(circle at 90% 12%, rgba(12, 43, 72, 0.12), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, var(--ice) 100%);
  text-rendering: optimizeLegibility;
}

body.menu-lock {
  overflow: hidden;
}

img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(143, 220, 255, 0.75);
  outline-offset: 4px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  color: var(--blue-950);
  background: var(--baby-400);
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1100;
  height: 4px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--baby-500), #ffffff, var(--baby-500));
  box-shadow: 0 0 22px rgba(143, 220, 255, 0.9);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  align-items: center;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(20px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(6, 18, 32, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 0.25rem;
  border: 1px solid rgba(143, 220, 255, 0.38);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(234, 249, 255, 0.85));
  box-shadow: 0 16px 32px rgba(6, 18, 32, 0.11);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.nav-links a {
  padding: 0.68rem 0.9rem;
  color: #354759;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(6, 18, 32, 0.08);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: #354759;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--blue-950);
  background: var(--baby-100);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1rem;
  color: var(--blue-950);
  border: 1px solid rgba(143, 220, 255, 0.7);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--baby-500), #ffffff);
  box-shadow: 0 14px 32px rgba(143, 220, 255, 0.34);
  font-size: 0.9rem;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(143, 220, 255, 0.42);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 200ms ease, opacity 200ms ease;
}

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

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

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

.section {
  padding-block: clamp(74px, 9vw, 124px);
}

.section-soft {
  border-block: 1px solid rgba(12, 43, 72, 0.08);
  background:
    radial-gradient(circle at top right, rgba(143, 220, 255, 0.18), transparent 26rem),
    linear-gradient(180deg, rgba(234, 249, 255, 0.68), rgba(255, 255, 255, 0.74));
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(143, 220, 255, 0.22), transparent 34rem),
    radial-gradient(circle at bottom left, rgba(143, 220, 255, 0.12), transparent 26rem),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.section-video {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 0%, rgba(143, 220, 255, 0.25), transparent 28rem),
    linear-gradient(135deg, #050b14, var(--blue-900));
}

.page-section {
  min-height: calc(100svh - var(--header-height));
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.hero-orb-one {
  width: 520px;
  height: 520px;
  right: -180px;
  top: 70px;
  background: rgba(143, 220, 255, 0.28);
}

.hero-orb-two {
  width: 320px;
  height: 320px;
  left: -120px;
  bottom: 70px;
  background: rgba(12, 43, 72, 0.16);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  color: var(--blue-800);
  border: 1px solid rgba(143, 220, 255, 0.62);
  border-radius: 999px;
  background: rgba(234, 249, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-video .eyebrow {
  color: #e9f9ff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.09);
}

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

h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 890px;
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 8vw, 6.4rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 5vw, 4.15rem);
}

h3 {
  margin-bottom: 0.9rem;
  font-size: 1.35rem;
}

.lead {
  max-width: 720px;
  margin-bottom: 1.8rem;
  color: #334556;
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
}

.hero-actions,
.contact-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.section-actions {
  margin-top: 1.35rem;
}

.section-actions.centered {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--baby-500), #ffffff);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  box-shadow: 0 26px 54px rgba(143, 220, 255, 0.42);
}

.btn-ghost {
  color: var(--blue-900);
  border-color: rgba(12, 43, 72, 0.16);
  background: rgba(255, 255, 255, 0.78);
}

.section-dark .btn-ghost,
.section-video .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: relative;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(12, 43, 72, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.dj-card {
  overflow: hidden;
  padding: 1.35rem;
  color: var(--white);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(143, 220, 255, 0.28), transparent 16rem),
    linear-gradient(135deg, rgba(6, 18, 32, 0.98), rgba(12, 43, 72, 0.94));
}

.hero-photo {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  min-height: 0;
  margin-bottom: 1rem;
  padding: 0;
  border: 1px solid rgba(143, 220, 255, 0.34);
  border-radius: 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.06);
  background-size: 22px 22px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  box-shadow: none;
}

.dj-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.process-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(12, 43, 72, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

.process-list span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--blue-950);
  border-radius: 999px;
  background: var(--baby-500);
  font-size: 0.78rem;
  font-weight: 950;
}

.trust-marquee {
  position: relative;
  overflow: hidden;
  width: 100vw;
  left: 50%;
  margin-top: 2.75rem;
  margin-left: -50vw;
  padding-block: 0.5rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trust-track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  animation: trustMarquee 34s linear infinite;
  will-change: transform;
}

.trust-marquee:hover .trust-track {
  animation-play-state: paused;
}

.trust-item {
  display: grid;
  grid-template-rows: 2.2rem 1.6rem;
  align-items: center;
  justify-content: center;
  flex: 0 0 clamp(300px, 24vw, 410px);
  min-height: 128px;
  padding: 1.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(12, 43, 72, 0.12);
  border-radius: calc(var(--radius-md) + 4px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(6, 18, 32, 0.07);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--blue-800);
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1.02;
  align-self: end;
  text-align: center;
}

.trust-item span {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 700;
  align-self: start;
  text-align: center;
}

@keyframes trustMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.625rem));
  }
}

.section-heading {
  max-width: 800px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-area-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.service-area-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.48rem 0.9rem;
  color: var(--blue-950);
  border: 1px solid rgba(31, 111, 154, 0.18);
  border-radius: 999px;
  background: rgba(143, 220, 255, 0.22);
  font-weight: 900;
}

.section-dark .section-heading p,
.section-video .section-heading p {
  color: var(--muted-dark);
}

.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

#prubeh {
  padding-block: clamp(92px, 10vw, 144px);
}

#prubeh .split-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: center;
  gap: clamp(2.75rem, 7vw, 6.5rem);
}

#prubeh .section-heading {
  max-width: 540px;
}

#prubeh .section-heading h2 {
  margin-bottom: 1.2rem;
}

#prubeh .section-heading p {
  max-width: 500px;
}

.about-stack {
  display: grid;
  gap: 1rem;
}

.about-intro {
  display: grid;
  gap: 1.25rem;
}

.about-grid {
  align-items: stretch;
}

.about-grid .about-intro,
.about-grid .about-stack {
  height: 100%;
}

.about-grid .text-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-grid .about-stack {
  align-content: stretch;
}

.about-photo {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 3;
  min-height: 260px;
  border: 1px solid rgba(12, 43, 72, 0.12);
  border-radius: var(--radius-md);
  background: var(--blue-950);
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story {
  justify-content: flex-start;
}

.about-story h3 {
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-story p {
  color: #263648;
  font-size: 1.03rem;
}

.about-story p + p {
  margin-top: 0.9rem;
}

.about-note {
  min-height: auto;
  justify-content: flex-start;
}

.text-card,
.contact-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(12, 43, 72, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.text-card h3,
.contact-card h3 {
  color: var(--blue-800);
}

.text-card p:last-child,
.contact-card p:last-child {
  margin-bottom: 0;
}

.accent-card {
  background:
    radial-gradient(circle at top right, rgba(143, 220, 255, 0.24), transparent 16rem),
    rgba(255, 255, 255, 0.9);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}

.service-card {
  padding: clamp(1.25rem, 3vw, 1.65rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(143, 220, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
}

.check-list {
  display: grid;
  gap: 0.62rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  color: rgba(255, 255, 255, 0.82);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: var(--baby-500);
  box-shadow: 0 0 0 5px rgba(143, 220, 255, 0.12);
}

.event-list {
  display: grid;
  gap: 0.85rem;
  max-width: 980px;
  margin: 2.25rem auto 0;
}

.event-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: clamp(1.1rem, 3vw, 1.55rem);
  border: 1px solid rgba(12, 43, 72, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(6, 18, 32, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.event-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(6, 18, 32, 0.1);
}

.event-row > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--blue-950);
  border-radius: 14px;
  background: var(--baby-100);
  font-size: 0.82rem;
  font-weight: 950;
}

.event-row h3 {
  margin-bottom: 0.35rem;
  color: var(--blue-800);
}

.event-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.event-photo-showcase {
  overflow: hidden;
  margin-top: 2rem;
  padding: clamp(1.2rem, 2.5vw, 1.75rem);
  border: 1px solid rgba(12, 43, 72, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(6, 18, 32, 0.09);
}

.event-photo-track {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  transition: transform 520ms ease;
  will-change: transform;
}

.event-photo {
  position: relative;
  flex: 0 0 calc((100% - 2.5rem) / 3);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(12, 43, 72, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 24% 18%, rgba(143, 220, 255, 0.42), transparent 8rem),
    linear-gradient(135deg, rgba(6, 18, 32, 0.94), rgba(31, 111, 154, 0.7));
  box-shadow: 0 14px 34px rgba(6, 18, 32, 0.1);
  opacity: 0.62;
  transform: scale(0.94);
  transform-origin: center;
  transition: flex-basis 520ms ease, transform 520ms ease, opacity 520ms ease, box-shadow 520ms ease;
  will-change: transform;
}

.event-photo:nth-child(2n) {
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 255, 255, 0.24), transparent 8rem),
    linear-gradient(135deg, rgba(7, 26, 46, 0.96), rgba(15, 62, 99, 0.82));
}

.event-photo.is-active {
  opacity: 1;
  transform: scale(1.08);
  box-shadow: 0 22px 58px rgba(6, 18, 32, 0.18);
}

.event-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 1rem;
  margin-top: 2.25rem;
}

.video-card {
  padding: 0.75rem 0.75rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.video-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.video-frame {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
  border-radius: 18px;
  background: #07111f;
}

.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-placeholder {
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  border: 1px dashed rgba(143, 220, 255, 0.48);
  background:
    linear-gradient(rgba(143, 220, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 220, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 30% 20%, rgba(143, 220, 255, 0.24), transparent 12rem),
    #07111f;
  background-size: 20px 20px, 20px 20px, auto, auto;
}

.video-placeholder span,
.video-placeholder strong {
  display: block;
}

.video-placeholder span {
  color: var(--baby-300);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-placeholder strong {
  color: var(--white);
  font-size: 1.05rem;
}

.video-card h3 {
  margin: 1rem 0 0.35rem;
  padding-inline: 0.45rem;
}

.video-card p {
  margin-bottom: 0;
  padding-inline: 0.45rem;
  color: var(--muted-dark);
}

.video-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem 1.2rem;
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

.video-note strong {
  color: var(--baby-300);
}

.video-note span {
  color: var(--muted-dark);
  font-weight: 700;
}

.video-note code {
  color: var(--white);
  font-size: 0.92em;
}


.accordion {
  display: grid;
  gap: 1rem;
}

.accordion details {
  overflow: hidden;
  border: 1px solid rgba(12, 43, 72, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(6, 18, 32, 0.06);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 1.15rem 1.35rem;
  color: var(--blue-800);
  font-weight: 950;
  cursor: pointer;
  list-style: none;
}

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

.accordion summary::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--blue-950);
  border-radius: 999px;
  background: var(--baby-100);
  font-weight: 950;
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion details p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
}

.contact-section {
  background:
    radial-gradient(circle at bottom right, rgba(143, 220, 255, 0.18), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, var(--ice) 100%);
}

.contact-copy-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  width: min(100%, 500px);
  margin-top: 1.6rem;
}

.copy-button {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0.28rem;
  min-height: 82px;
  padding: 1.05rem 1.2rem;
  text-align: left;
  color: var(--blue-950);
  border: 1px solid rgba(12, 43, 72, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(6, 18, 32, 0.07);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.copy-button:hover {
  transform: translateY(-2px);
  border-color: rgba(143, 220, 255, 0.62);
  background: rgba(234, 249, 255, 0.9);
}

.copy-button span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.copy-button strong {
  font-size: clamp(0.92rem, 1.1vw, 1.04rem);
  font-weight: 950;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.copy-button.is-copied {
  border-color: rgba(143, 220, 255, 0.9);
  background: linear-gradient(135deg, var(--baby-100), #ffffff);
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.contact-item {
  padding: 1rem;
  border: 1px solid rgba(12, 43, 72, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
}

.contact-item span,
.contact-item a {
  display: block;
}

.contact-item span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-item a {
  margin-top: 0.25rem;
  color: var(--blue-800);
  font-size: 1.08rem;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
}

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

.contact-form label span {
  color: var(--blue-800);
  font-size: 0.88rem;
  font-weight: 950;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  color: var(--ink);
  border: 1px solid rgba(12, 43, 72, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  font: inherit;
  font-weight: 650;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(99, 115, 131, 0.82);
}

.contact-form .btn {
  width: fit-content;
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  max-width: 520px;
  margin: 0.15rem 0 0;
  padding: 0.7rem 0.85rem;
  color: var(--blue-950);
  border: 1px solid rgba(31, 111, 154, 0.16);
  border-radius: 14px;
  background: rgba(143, 220, 255, 0.2);
  font-size: 0.92rem;
  font-weight: 750;
}

.form-status[data-status="success"] {
  border-color: rgba(31, 111, 154, 0.24);
  background: rgba(143, 220, 255, 0.28);
}

.site-footer {
  padding-block: 2rem;
  color: rgba(255, 255, 255, 0.72);
  background: var(--blue-950);
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: min(100%, 760px);
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-mark {
  width: 48px;
  height: 48px;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.54);
}

.footer-grid p {
  margin: 0;
  text-align: center;
}

.footer-partners {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  width: min(100%, 760px);
}

.footer-partners > span {
  color: rgba(235, 249, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-partner-logos img {
  width: auto;
  max-width: 160px;
  height: 48px;
  object-fit: contain;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--blue-950);
  border: 0;
  border-radius: 999px;
  background: var(--baby-500);
  box-shadow: 0 16px 36px rgba(6, 18, 32, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav-cta {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  #prubeh .split-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #prubeh .section-heading {
    max-width: 720px;
  }

  .about-grid .section-heading,
  .about-grid .text-card,
  .about-photo {
    min-height: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    max-width: 660px;
  }

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

  .trust-item {
    flex-basis: clamp(260px, 62vw, 340px);
    padding: 1.15rem 1.2rem;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0.25rem;
    padding: 0.6rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: scaleY(0.94) translateY(-8px);
    transform-origin: top;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-links a {
    padding: 0.9rem 1rem;
  }

  .brand small {
    display: none;
  }

  .service-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .event-photo-showcase {
    padding: 1.25rem 0.75rem;
  }

  .event-photo {
    flex-basis: calc((100% - 1.25rem) / 2);
  }

  .event-photo.is-active {
    transform: scale(1.04);
  }

  .hero-photo {
    min-height: 0;
  }

  .hero-photo img {
    width: 100%;
    height: 100%;
    max-height: none;
  }

  .footer-grid {
    justify-items: start;
  }

  .footer-main,
  .footer-partners {
    justify-items: start;
    justify-content: flex-start;
  }

  .footer-partner-logos {
    justify-content: flex-start;
  }

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

@media (max-width: 460px) {
  h1 {
    font-size: clamp(2.55rem, 15.5vw, 3.25rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-copy-actions {
    grid-template-columns: 1fr;
  }

  .copy-button {
    grid-template-columns: 1fr;
  }

  .event-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .trust-track {
    animation: none;
  }
}
