:root {
  --bg: #0f0c17;
  --bg-soft: #171224;
  --text: #f8f6ff;
  --muted: #beb6d3;
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.06);
  --primary: #ff93c7;
  --primary-strong: #ff5ea9;
  --accent: #9f8bff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 20px 45px rgba(5, 2, 11, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(165deg, #0b0912 0%, #131022 55%, #100d18 100%);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 5.5rem;
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: clamp(2.2rem, 4vw, 4rem) 0;
  scroll-margin-top: 5.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #f9c2de;
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 1.35rem;
}

.section-heading h2 {
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-heading p {
  color: var(--muted);
}

.bg-orb {
  position: fixed;
  z-index: -1;
  width: min(32rem, 60vw);
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.28;
  pointer-events: none;
}

.orb-a {
  top: -8rem;
  left: -7rem;
  background: #f75ea7;
}

.orb-b {
  right: -10rem;
  bottom: -12rem;
  background: #7057ff;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 9, 18, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  min-height: 4.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-dot {
  width: 0.65rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 0.32rem rgba(255, 94, 169, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.site-nav > a:not(.btn) {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.site-nav > a:not(.btn):hover {
  color: var(--text);
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.7rem;
  padding: 0 1.1rem;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.chip:focus-visible,
.menu-toggle:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(255, 174, 220, 0.95);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-strong), var(--accent));
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 94, 169, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(255, 94, 169, 0.34);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.menu-toggle {
  width: 2.95rem;
  height: 2.95rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  padding: 0;
}

.menu-toggle span {
  width: 1.2rem;
  height: 2px;
  border-radius: 20px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding-top: clamp(1.9rem, 3.2vw, 3.1rem);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2rem, 6.4vw, 3.45rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lead {
  color: var(--muted);
  margin-top: 1rem;
  max-width: 61ch;
}

.hero-actions {
  margin-top: 1.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-stats {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stats li {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  padding: 0.85rem 0.8rem;
  backdrop-filter: blur(8px);
}

.hero-stats strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: 0.12rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-visual {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.showcase-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.showcase-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 24px 40px rgba(7, 4, 14, 0.45);
}

.showcase-main {
  grid-column: span 2;
  min-height: 17rem;
  position: relative;
}

.showcase-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 8, 16, 0.8), rgba(10, 8, 16, 0.03));
}

.showcase-content {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  padding: 1.35rem;
}

.showcase-title {
  font-size: 1.15rem;
  font-weight: 700;
}

.showcase-subtitle {
  margin-top: 0.28rem;
  color: #ddd6f2;
  font-size: 0.92rem;
}

.showcase-small {
  min-height: 9rem;
  aspect-ratio: 1 / 1;
}

.showcase-small img {
  object-fit: cover;
  background: transparent;
}

.cards-3 {
  display: grid;
  gap: 0.9rem;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  padding: 1.25rem 1.15rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
}

.info-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.info-card p {
  color: var(--muted);
}

.service-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
  margin-bottom: 1.15rem;
}

.chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-radius: 999px;
  min-height: 2.25rem;
  padding: 0 0.95rem;
  font-weight: 600;
  font-size: 0.82rem;
}

.chip.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(255, 94, 169, 0.88), rgba(143, 123, 255, 0.88));
}

.services-grid {
  display: grid;
  gap: 0.8rem;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  padding: 1.2rem 1.05rem;
  transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.service-card h3 {
  font-size: 1rem;
  line-height: 1.3;
}

.service-card p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card div {
  margin-top: 0.9rem;
}

.service-card strong {
  font-size: 1.1rem;
}

.service-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card.is-hidden {
  display: none;
}

.team-grid {
  display: grid;
  gap: 1.2rem;
}

.cards-2 {
  display: grid;
  gap: 0.75rem;
}

.member-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  padding: 1.2rem 1.05rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.member-card:hover,
.member-card.is-active,
.member-card:focus-within {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 8, 18, 0.34);
}

.member-card h3 {
  margin-bottom: 0.45rem;
}

.member-card p {
  color: var(--muted);
}

.reviews-slider {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: 1.35rem 1.2rem;
  min-height: 10.6rem;
}

.review-card {
  display: none;
}

.review-card.is-active {
  display: block;
  animation: fade-up 0.4s ease;
}

.review-card p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.5;
}

.review-card span {
  display: inline-block;
  margin-top: 0.9rem;
  color: #d8d0ed;
  font-size: 0.9rem;
}

.reviews-controls {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.65rem;
}

.gallery-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
}

.gallery-grid img {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  min-height: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: transparent;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-grid img:first-child {
  object-position: 28% 50%;
}

.gallery-grid img:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 14px 28px rgba(8, 5, 15, 0.36);
}

.cta {
  padding-top: 0.45rem;
}

.cta-box {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(255, 94, 169, 0.16), rgba(126, 107, 255, 0.19));
  padding: clamp(1.4rem, 4vw, 2.25rem);
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.cta-box p {
  color: #e5dff6;
  margin-top: 0.6rem;
}

.cta-box .hero-actions {
  justify-content: center;
}

.contact-grid {
  display: grid;
  gap: 0.9rem;
}

.contact-card,
.map-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: 1.2rem;
}

.contact-card h2 {
  font-size: 1.55rem;
  margin-bottom: 1rem;
}

.contact-list {
  display: grid;
  gap: 0.52rem;
}

.contact-list li {
  color: var(--muted);
}

.contact-list strong {
  color: var(--text);
}

.contact-list a {
  color: #fdd1e8;
}

.contact-note {
  margin-top: 0.95rem;
  color: #dfd7f3;
  font-size: 0.9rem;
}

.map-wrap {
  min-height: 20rem;
  overflow: hidden;
  padding: 0;
}

.map-wrap iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(8, 6, 13, 0.8);
}

.footer-grid {
  padding: 1.8rem 0 1.2rem;
  display: grid;
  gap: 1rem;
}

.footer-brand {
  display: grid;
  gap: 0.5rem;
}

.footer-logo {
  font-size: 1.08rem;
  font-weight: 700;
  color: #f9d3e8;
}

.footer-col {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.footer-col h3 {
  margin: 0;
  font-size: 0.95rem;
  color: #f6c7e2;
}

.footer-col a,
.footer-col p,
.footer-brand p {
  color: #c9c0df;
  font-size: 0.9rem;
}

.footer-col a {
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffe2f0;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 0.95rem 0 calc(0.95rem + env(safe-area-inset-bottom));
  display: flex;
  gap: 0.5rem 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer p {
  color: #c6bddf;
  font-size: 0.84rem;
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(9, 7, 14, 0.94);
  backdrop-filter: blur(10px);
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-bar a {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
}

.mobile-bar a:nth-child(2) {
  color: #ffd7eb;
  background: linear-gradient(135deg, rgba(255, 94, 169, 0.2), rgba(143, 123, 255, 0.2));
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .mobile-bar {
    display: none;
  }

  .cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr 0.9fr;
  }
}

@media (min-width: 980px) {
  .section {
    padding: 2.75rem 0;
  }

  .hero-grid {
    grid-template-columns: 1.06fr 0.94fr;
    gap: 2.25rem;
  }

  .hero-visual {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: repeat(2, minmax(11.8rem, 1fr));
    min-height: 26.5rem;
  }

  .showcase-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    min-height: 100%;
  }

  .showcase-small {
    min-height: 0;
  }

  .showcase-small:nth-of-type(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .showcase-small:nth-of-type(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: end;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
  }
}

@media (max-width: 959px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 1rem;
    right: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(12, 10, 19, 0.97);
    backdrop-filter: blur(12px);
    padding: 0.95rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a:not(.btn) {
    min-height: 2.35rem;
    display: inline-flex;
    align-items: center;
  }

  .site-nav .btn {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
