﻿:root {
  --bg: #120825;
  --bg-soft: #23104a;
  --bg-card: #2e145f;
  --text: #eee9f8;
  --muted: #c7b8df;
  --line: #5a338f;
  --accent: #a855f7;
  --accent-strong: #7e22ce;
  --gold: #facc15;
  --gold-soft: #fde68a;
  --dark: #05020a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, .35);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: auto;
}
body {
  margin: 0;
  font-family: Lato, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
body.nav-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
picture {
  display: block;
}
button,
input,
textarea {
  font: inherit;
}
.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}
.container--narrow {
  width: min(720px, calc(100% - 40px));
}
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(80vw, 1320px);
  min-height: 72px;
  margin: 0;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(199, 184, 223, .34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(19, 8, 38, .96), rgba(30, 14, 55, .9)),
    rgba(5, 2, 10, .92);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .08);
  isolation: isolate;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, .06);
  pointer-events: none;
}
.site-header__brand {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border: 1px solid rgba(199, 184, 223, .22);
  border-radius: 999px;
  background: radial-gradient(circle at 45% 30%, rgba(168, 85, 247, .28), rgba(5, 2, 10, .62) 62%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 10px 28px rgba(0, 0, 0, .26);
}
.site-header__brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
}
.site-header__brand picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}
.site-header__links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(199, 184, 223, .26);
  border-radius: 999px;
  background: rgba(5, 2, 10, .38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}
.site-header__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(238, 233, 248, .82);
  white-space: nowrap;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.site-header__links a:last-child {
  margin-left: 3px;
  border-color: rgba(199, 184, 223, .22);
  background: rgba(255, 255, 255, .04);
}
.site-header__links a:hover,
.site-header__links .is-active {
  background: linear-gradient(180deg, rgba(168, 85, 247, .28), rgba(126, 34, 206, .22));
  border-color: rgba(199, 184, 223, .28);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 8px 22px rgba(0, 0, 0, .18);
}
.site-header__links a:hover {
  transform: translateY(-1px);
}
.site-header__lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(199, 184, 223, .26);
  border-radius: 999px;
  background: rgba(5, 2, 10, .42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}
.site-header__lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.site-header__lang a.is-active {
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  border-color: rgba(255, 255, 255, .16);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(126, 34, 206, .36);
}
.site-header__toggle {
  display: block;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(199, 184, 223, .3);
  border-radius: 999px;
  background: rgba(5, 2, 10, .58);
  position: relative;
  z-index: 110;
}
@media (min-width: 901px) {
  .site-header__toggle {
    display: none;
  }
}
.site-header__toggle span {
  display: block;
  width: 20px;
  height: 3px;
  margin: 5px auto;
  background: var(--text);
}
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
  padding-top: 112px;
}
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(18, 8, 37, .96) 28%, rgba(18, 8, 37, .68) 58%, rgba(18, 8, 37, .28) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(18, 8, 37, .6) 16%, rgba(18, 8, 37, 0) 56%);
  pointer-events: none;
}
.hero__image,
.page-hero--image img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .74;
}
.hero > picture {
  position: absolute;
  inset: 0;
}
.hero__content,
.page-hero .container {
  position: relative;
  z-index: 1;
}
.hero__content {
  width: min(80vw, 1320px);
  max-width: 680px;
  margin-left: max(10vw, calc((100vw - 1320px) / 2));
  margin-right: auto;
}
.eyebrow,
.section-heading span {
  display: inline-block;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 12px;
}
h1,
h2,
h3 {
  font-family: Poppins, Arial, sans-serif;
  line-height: 1.05;
  margin: 0 0 18px;
  overflow-wrap: break-word;
}
h1 {
  max-width: 680px;
  font-size: clamp(44px, 7vw, 78px);
}
h2 {
  font-size: clamp(32px, 5vw, 54px);
}
h3 {
  font-size: 24px;
}
p {
  margin: 0 0 18px;
  color: var(--muted);
}
.hero p,
.page-hero p {
  max-width: 610px;
  font-size: 19px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero__mobile-proof {
  display: none;
}
.section.home-reels {
  position: relative;
  overflow: hidden;
  padding-top: 78px;
  padding-bottom: 88px;
  background:
    linear-gradient(90deg, rgba(250, 204, 21, .06) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(199, 184, 223, .05) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 2, 10, .98), rgba(18, 8, 37, .94));
  background-size: 116px 116px, 116px 116px, auto;
}
.home-reels::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250, 204, 21, .34), transparent);
}
.home-reels__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 52px;
  align-items: center;
}
.home-reels__copy {
  max-width: 500px;
}
.home-reels__copy p {
  max-width: 480px;
}
.home-reels__hint {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 6px;
  padding: 0 14px;
  border: 1px solid rgba(250, 204, 21, .28);
  border-radius: 999px;
  background: rgba(5, 2, 10, .46);
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 700;
}
.home-reels__track {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 280px));
  gap: 18px;
  justify-content: end;
}
.home-reel {
  position: relative;
  aspect-ratio: 9 / 16;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(199, 184, 223, .28);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 28px 74px rgba(0, 0, 0, .36), inset 0 1px 0 rgba(255, 255, 255, .08);
  isolation: isolate;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.home-reel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 2, 10, .18), transparent 34%),
    linear-gradient(0deg, rgba(5, 2, 10, .88), transparent 48%);
  pointer-events: none;
}
.home-reel:hover,
.home-reel:focus-within {
  transform: translateY(-8px);
  border-color: rgba(250, 204, 21, .56);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .45), 0 0 0 1px rgba(250, 204, 21, .08);
}
.home-reel__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.home-reel__toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(250, 204, 21, .38);
  border-radius: 999px;
  background: rgba(5, 2, 10, .58);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.home-reel__toggle:hover,
.home-reel__toggle:focus-visible {
  transform: scale(1.06);
  border-color: rgba(250, 204, 21, .72);
  background: var(--gold);
  color: var(--dark);
  outline: none;
}
.home-reel__play {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid currentColor;
}
.home-reel__toggle.is-playing .home-reel__play {
  position: relative;
  width: 15px;
  height: 17px;
  margin-left: 0;
  border: 0;
}
.home-reel__toggle.is-playing .home-reel__play::before,
.home-reel__toggle.is-playing .home-reel__play::after {
  content: "";
  position: absolute;
  top: 0;
  width: 5px;
  height: 17px;
  border-radius: 2px;
  background: currentColor;
}
.home-reel__toggle.is-playing .home-reel__play::before {
  left: 0;
}
.home-reel__toggle.is-playing .home-reel__play::after {
  right: 0;
}
.home-reel__meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}
.home-reel__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 10px;
  padding: 0 10px;
  border: 1px solid rgba(250, 204, 21, .34);
  border-radius: 999px;
  background: rgba(5, 2, 10, .48);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
}
.home-reel__meta h3 {
  max-width: 220px;
  margin: 0;
  color: var(--white);
  font-size: 24px;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .72);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid #000;
  border-radius: 8px;
  background: #000;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}
.button--ghost {
  background: transparent;
  border-color: var(--line);
}
.button--full {
  width: 100%;
}
.button--small {
  min-height: 42px;
  padding: 0 16px;
}
.section {
  padding: 92px 0;
}
.section--tint {
  background: linear-gradient(180deg, rgba(35, 16, 74, .72), rgba(18, 8, 37, .82));
}
.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}
.section-heading--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.value-grid,
.testimonial-grid,
.area-grid,
.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.services-intro {
  padding-bottom: 34px;
}
.services-intro__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.services-intro .section-heading {
  margin-bottom: 0;
}
.services-cards {
  padding-top: 0;
}
.services-cards .service-mini-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.services-cards .service-card {
  height: 100%;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
  padding: 18px;
}
.services-cards .service-card picture {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(5, 2, 10, .64);
}
.services-cards .service-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}
.value-card,
.service-card,
.area-grid article,
.testimonial-grid blockquote,
.detail-box,
.prose {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(46, 20, 95, .78);
  box-shadow: var(--shadow);
}
.value-card {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 14px;
  min-height: 252px;
  text-align: center;
  isolation: isolate;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.value-card__icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 15px;
  margin-bottom: 4px;
  border: 1px solid rgba(250, 204, 21, .42);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(250, 204, 21, .2), rgba(168, 85, 247, .12));
  box-shadow: 0 16px 34px rgba(250, 204, 21, .14), inset 0 1px 0 rgba(255, 255, 255, .12);
  color: var(--gold);
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease, color .24s ease;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card h3 {
  margin-bottom: 0;
}
.value-card p {
  margin: 0;
}
.value-card p,
.service-card span,
.testimonial-grid p {
  color: var(--muted);
}
.value-card,
.area-grid article,
.testimonial-grid blockquote,
.detail-box {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.value-card::before,
.area-grid article::before,
.testimonial-grid blockquote::before,
.detail-box::before,
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-top: 1px solid rgba(250, 204, 21, .24);
  background:
    linear-gradient(135deg, rgba(250, 204, 21, .18), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(168, 85, 247, .28), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}
.value-card::after,
.area-grid article::after,
.testimonial-grid blockquote::after,
.detail-box::after,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, .12), transparent 42%);
  transform: translateX(-115%);
  transition: transform .54s ease;
  pointer-events: none;
}
.value-card:hover,
.value-card:focus-within,
.area-grid article:hover,
.area-grid article:focus-within,
.testimonial-grid blockquote:hover,
.testimonial-grid blockquote:focus-within,
.detail-box:hover,
.detail-box:focus-within,
.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(250, 204, 21, .56);
  background: rgba(46, 20, 95, .94);
  box-shadow: 0 30px 82px rgba(0, 0, 0, .42), 0 0 0 1px rgba(250, 204, 21, .1);
}
.value-card:hover::before,
.value-card:focus-within::before,
.area-grid article:hover::before,
.area-grid article:focus-within::before,
.testimonial-grid blockquote:hover::before,
.testimonial-grid blockquote:focus-within::before,
.detail-box:hover::before,
.detail-box:focus-within::before,
.gallery-item:hover::before,
.gallery-item:focus-visible::before {
  opacity: 1;
}
.value-card:hover::after,
.value-card:focus-within::after,
.area-grid article:hover::after,
.area-grid article:focus-within::after,
.testimonial-grid blockquote:hover::after,
.testimonial-grid blockquote:focus-within::after,
.detail-box:hover::after,
.detail-box:focus-within::after,
.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  transform: translateX(115%);
}
.value-card > *,
.area-grid article > *,
.testimonial-grid blockquote > *,
.detail-box > * {
  position: relative;
  z-index: 2;
}
.value-card h3,
.area-grid article h3,
.testimonial-grid cite,
.detail-box h2,
.detail-box h3 {
  transition: color .24s ease;
}
.value-card:hover h3,
.value-card:focus-within h3,
.area-grid article:hover h3,
.area-grid article:focus-within h3,
.testimonial-grid blockquote:hover cite,
.testimonial-grid blockquote:focus-within cite,
.detail-box:hover h2,
.detail-box:focus-within h2,
.detail-box:hover h3,
.detail-box:focus-within h3 {
  color: var(--gold-soft);
}
.value-card:hover .value-card__icon,
.value-card:focus-within .value-card__icon {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(250, 204, 21, .72);
  background: linear-gradient(180deg, rgba(250, 204, 21, .9), rgba(253, 230, 138, .74));
  box-shadow: 0 22px 48px rgba(250, 204, 21, .24), inset 0 1px 0 rgba(255, 255, 255, .32);
  color: var(--dark);
}
.testimonials-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 22%, rgba(250, 204, 21, .14), transparent 30%),
    radial-gradient(circle at 84% 76%, rgba(199, 184, 223, .12), transparent 34%),
    linear-gradient(180deg, rgba(18, 8, 37, .96), rgba(5, 2, 10, .98));
}
.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(250, 204, 21, .055) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(244, 239, 255, .045) 0 1px, transparent 1px);
  background-size: 118px 118px;
  opacity: .72;
  pointer-events: none;
}
.testimonials-section__orb {
  position: absolute;
  z-index: -1;
  display: block;
  aspect-ratio: 1;
  border: 1px solid rgba(250, 204, 21, .22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 62%);
  box-shadow: inset 0 0 90px rgba(250, 204, 21, .08);
  pointer-events: none;
}
.testimonials-section__orb--one {
  width: min(56vw, 760px);
  top: -330px;
  left: -210px;
}
.testimonials-section__orb--two {
  width: min(46vw, 640px);
  right: -230px;
  bottom: -300px;
  border-color: rgba(199, 184, 223, .2);
  box-shadow: inset 0 0 90px rgba(199, 184, 223, .08);
}
.testimonials-section .container {
  position: relative;
  z-index: 1;
}
.testimonials-section__heading {
  max-width: 860px;
}
.testimonials-section__heading h2 {
  max-width: 740px;
}
.testimonials-section .testimonial-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}
.testimonials-section .testimonial-card {
  grid-column: span 2;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-color: rgba(255, 255, 255, .72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(247, 238, 220, .96)),
    #fffaf0;
  color: #1f1728;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .22), 0 1px 0 rgba(255, 255, 255, .9) inset;
}
.testimonials-section .testimonial-card:nth-child(-n + 2) {
  grid-column: span 3;
}
.testimonials-section .testimonial-card::before {
  border-top: 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(250, 204, 21, .24), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .6), transparent 48%);
  opacity: 1;
}
.testimonials-section .testimonial-card::after {
  background: linear-gradient(120deg, transparent 20%, rgba(250, 204, 21, .26), transparent 46%);
}
.testimonials-section .testimonial-card:hover,
.testimonials-section .testimonial-card:focus-within {
  transform: translateY(-10px) rotate(-.35deg);
  border-color: rgba(250, 204, 21, .82);
  background:
    linear-gradient(145deg, #ffffff, #fff4d6),
    #ffffff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34), 0 0 0 1px rgba(250, 204, 21, .26);
}
.testimonial-card__stars {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-self: flex-start;
  gap: 4px;
  padding: 8px 11px;
  border: 1px solid rgba(250, 204, 21, .48);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 12px 30px rgba(250, 204, 21, .16);
  color: #d99000;
  font-size: 16px;
  line-height: 1;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.testimonial-card:hover .testimonial-card__stars,
.testimonial-card:focus-within .testimonial-card__stars {
  transform: translateY(-2px);
  background: #fff7d7;
  box-shadow: 0 18px 38px rgba(250, 204, 21, .24);
}
.testimonials-section .testimonial-card p {
  margin: 0;
  color: #3d3149;
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  line-height: 1.45;
}
.testimonial-card footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 23, 40, .1);
}
.testimonials-section .testimonial-card cite {
  color: #180825;
  font-family: Poppins, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}
.testimonial-card footer span {
  color: #6a5b74;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.testimonials-section .testimonial-card:hover cite,
.testimonials-section .testimonial-card:focus-within cite {
  color: #8a5a00;
}
@media (max-width: 980px) {
  .testimonials-section .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-section .testimonial-card,
  .testimonials-section .testimonial-card:nth-child(-n + 2) {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .testimonials-section .testimonial-card {
    min-height: auto;
    padding: 24px;
  }
  .testimonials-section__orb--one {
    width: 480px;
    top: -260px;
    left: -270px;
  }
  .testimonials-section__orb--two {
    width: 420px;
    right: -260px;
    bottom: -250px;
  }
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 52px;
  align-items: center;
}
.split--reverse {
  grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
}
.rounded-media,
.service-row picture,
.service-row img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  isolation: isolate;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.service-card::before,
.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(250, 204, 21, .2), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(168, 85, 247, .34), transparent 34%);
  opacity: 0;
  transition: opacity .24s ease;
}
.service-card::after,
.service-row::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, .13), transparent 42%);
  transform: translateX(-115%);
  transition: transform .54s ease;
  pointer-events: none;
}
.service-card:hover,
.service-card:focus-visible,
.service-row:hover,
.service-row:focus-within {
  transform: translateY(-8px);
  border-color: rgba(250, 204, 21, .56);
  background: rgba(46, 20, 95, .94);
  box-shadow: 0 30px 82px rgba(0, 0, 0, .42), 0 0 0 1px rgba(250, 204, 21, .1);
}
.service-card:hover::before,
.service-card:focus-visible::before,
.service-row:hover::before,
.service-row:focus-within::before {
  opacity: 1;
}
.service-card:hover::after,
.service-card:focus-visible::after,
.service-row:hover::after,
.service-row:focus-within::after {
  transform: translateX(115%);
}
.service-card:focus-visible {
  outline: 3px solid rgba(250, 204, 21, .42);
  outline-offset: 4px;
}
.service-card strong,
.service-card span,
.service-row h2,
.service-row p,
.service-row .button {
  position: relative;
  z-index: 2;
}
.service-card strong,
.service-row h2 {
  transition: color .24s ease;
}
.service-card:hover strong,
.service-card:focus-visible strong,
.service-row:hover h2,
.service-row:focus-within h2 {
  color: var(--gold-soft);
}
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  transition: transform .36s ease, filter .36s ease;
}
.service-card picture,
.service-row picture {
  overflow: hidden;
}
.service-card:hover img,
.service-card:focus-visible img,
.service-row:hover img,
.service-row:focus-within img {
  transform: scale(1.045);
  filter: saturate(1.12) contrast(1.05);
}
.service-list {
  display: grid;
  gap: 30px;
}
.service-row {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(90, 51, 143, .82);
  border-radius: 8px;
  background: rgba(46, 20, 95, .54);
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.service-row img {
  height: 260px;
  transition: transform .36s ease, filter .36s ease;
}
.service-row__icon {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #000;
  color: var(--white);
  transition: background .24s ease, box-shadow .24s ease, color .24s ease;
}
.service-row:hover .service-row__icon,
.service-row:focus-within .service-row__icon {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 14px 28px rgba(250, 204, 21, .18);
}
.home-gallery {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(250, 204, 21, .07) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(199, 184, 223, .06) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 2, 10, .98), rgba(30, 14, 55, .94));
  background-size: 118px 118px, 118px 118px, auto;
}
.home-gallery::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250, 204, 21, .35), transparent);
}
.home-gallery__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: 50px;
  align-items: center;
}
.home-gallery__copy {
  max-width: 520px;
}
.home-gallery__copy p {
  max-width: 500px;
}
.home-gallery__copy .button {
  margin-top: 12px;
}
.home-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 96px;
  gap: 14px;
}
.home-gallery__item {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(199, 184, 223, .26);
  border-radius: 8px;
  background: var(--bg-card);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .28);
  isolation: isolate;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.home-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 44%, rgba(5, 2, 10, .46));
  opacity: .72;
  transition: opacity .2s ease;
}
.home-gallery__item:hover {
  transform: translateY(-3px);
  border-color: rgba(250, 204, 21, .48);
  box-shadow: 0 28px 64px rgba(0, 0, 0, .34);
}
.home-gallery__item:hover::after {
  opacity: .42;
}
.home-gallery__item picture,
.home-gallery__item img {
  width: 100%;
  height: 100%;
}
.home-gallery__item img {
  object-fit: cover;
  transition: transform .35s ease;
}
.home-gallery__item:hover img {
  transform: scale(1.04);
}
.home-gallery__item--1 {
  grid-column: 1 / span 6;
  grid-row: 1 / span 3;
}
.home-gallery__item--2 {
  grid-column: 7 / span 6;
  grid-row: 1 / span 2;
}
.home-gallery__item--3 {
  grid-column: 7 / span 3;
  grid-row: 3 / span 3;
}
.home-gallery__item--4 {
  grid-column: 10 / span 3;
  grid-row: 3 / span 3;
}
.home-gallery__item--5 {
  grid-column: 1 / span 3;
  grid-row: 4 / span 2;
}
.home-gallery__item--6 {
  grid-column: 4 / span 3;
  grid-row: 4 / span 2;
}
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 70px;
  background: var(--bg-soft);
}
.page-hero--image {
  min-height: 520px;
}
.page-hero--premium {
  min-height: clamp(600px, 78vh, 820px);
  padding: 144px 0 88px;
  background:
    linear-gradient(135deg, rgba(35, 16, 74, .9), rgba(5, 2, 10, .96)),
    var(--bg-soft);
}
.page-hero--premium::after {
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(18, 8, 37, .96) 34%, rgba(18, 8, 37, .62) 66%, rgba(18, 8, 37, .4) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(18, 8, 37, .82) 12%, rgba(18, 8, 37, .08) 58%);
}
.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .5;
}
.page-hero__picture {
  position: absolute;
  inset: 0;
}
.page-hero--services .page-hero__image {
  object-position: center 42%;
}
.page-hero--gallery .page-hero__image {
  object-position: center 30%;
}
.page-hero--about .page-hero__image {
  object-position: center 38%;
}
.page-hero__rings {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.page-hero__ring {
  position: absolute;
  display: block;
  aspect-ratio: 1;
  border: 1px solid rgba(199, 184, 223, .24);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(168, 85, 247, .12);
}
.page-hero__ring--one {
  width: min(58vw, 760px);
  top: 50%;
  right: -16vw;
  transform: translateY(-50%);
}
.page-hero__ring--two {
  width: min(34vw, 470px);
  top: 14%;
  right: 7vw;
  border-color: rgba(168, 85, 247, .32);
}
.page-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 58px;
  align-items: end;
}
.page-hero__copy {
  max-width: 780px;
}
.page-hero--premium .eyebrow {
  padding: 8px 14px;
  border: 1px solid rgba(199, 184, 223, .28);
  border-radius: 999px;
  background: rgba(5, 2, 10, .3);
  color: var(--white);
}
.page-hero--premium h1 {
  max-width: 840px;
  font-size: clamp(46px, 6.4vw, 86px);
}
.page-hero--premium p {
  max-width: 690px;
  font-size: clamp(18px, 2vw, 22px);
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.page-hero__panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(199, 184, 223, .28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(46, 20, 95, .72), rgba(5, 2, 10, .62));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}
.page-hero__panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), rgba(199, 184, 223, .24));
}
.page-hero__panel span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}
.page-hero__panel strong {
  display: block;
  margin-bottom: 14px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 28px;
  line-height: 1.12;
}
.page-hero__panel p {
  margin: 0;
  font-size: 16px;
}
.gallery-grid {
  columns: 3 260px;
  column-gap: 18px;
}
.gallery-item {
  position: relative;
  width: 100%;
  display: inline-block;
  margin: 0 0 18px;
  padding: 0;
  border: 1px solid rgba(199, 184, 223, .22);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .28);
  color: var(--text);
  cursor: pointer;
  isolation: isolate;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}
.gallery-item::before {
  z-index: 2;
}
.gallery-item::after {
  z-index: 3;
}
.gallery-item picture,
.gallery-item img {
  position: relative;
  z-index: 1;
  width: 100%;
}
.gallery-item img {
  height: auto;
  transition: transform .36s ease, filter .36s ease;
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.12) contrast(1.05);
}
.gallery-item:focus-visible {
  outline: 3px solid rgba(250, 204, 21, .42);
  outline-offset: 4px;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}
.pagination a,
.pagination span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.legal-document {
  display: grid;
  gap: 28px;
}
.legal-document__meta {
  margin: 0;
  color: var(--gold-soft);
  font-weight: 700;
  text-transform: uppercase;
}
.legal-section {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(199, 184, 223, .18);
}
.legal-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.legal-section h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 34px);
}
.legal-section p:last-child {
  margin-bottom: 0;
}
.hp-field {
  position: absolute;
  left: -9999px;
}
.form-message {
  text-align: center;
  margin: 0;
  font-weight: 700;
}
.form-message--success {
  color: #7ddf9f;
}
.form-message--error {
  color: #ffb4b4;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.check-list li::before {
  content: "\2713";
  margin-right: 9px;
  color: #7ddf9f;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stats article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}
.stats strong {
  display: block;
  font: 700 36px Poppins, Arial, sans-serif;
}
.stats span {
  color: var(--muted);
}
.lightbox {
  max-width: min(92vw, 1000px);
  border: 0;
  padding: 0;
  background: transparent;
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, .78);
}
.lightbox img {
  max-height: 88vh;
  border-radius: 8px;
}
.lightbox button {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  font-size: 28px;
}
.consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 8, 37, .96);
  box-shadow: var(--shadow);
  max-height: 32vh;
  overflow: auto;
  pointer-events: auto;
}
.consent[hidden] {
  display: none;
}
.consent p {
  margin: 0;
}
.consent__actions {
  display: flex;
  gap: 10px;
}
.consent button {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
.site-footer {
  padding: 58px 0 24px;
  border-top: 1px solid var(--line);
  background: var(--dark);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
}
.site-footer__logo {
  width: 100px;
  height: auto;
  margin-bottom: 16px;
}
.site-footer h2 {
  font-size: 20px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}
.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
}
.site-footer__copy {
  width: min(1140px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.site-footer__credit {
  margin-top: 8px;
}
.site-footer__credit:hover {
  color: var(--text);
}
@media (max-width: 900px) {
  .site-header__toggle {
    display: block !important;
    position: static;
    flex-shrink: 0;
  }
  .site-header__nav {
    position: fixed;
    inset: 82px 20px auto 20px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(199, 184, 223, .26);
    border-radius: 28px;
    background: rgba(18, 8, 37, .97);
    box-shadow: var(--shadow);
    font-size: 18px;
  }
  .site-header__nav.is-open {
    display: flex;
  }
  .site-header__links {
    flex-direction: column;
    width: 100%;
    gap: 6px;
    border-radius: 22px;
  }
  .site-header__links a {
    width: 100%;
    border-right: 0;
    border-bottom: 0;
    justify-content: center;
  }
  .site-header__links a:last-child {
    margin-left: 0;
  }
  .site-header__lang {
    align-self: center;
  }
  .services-intro__content {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-reels__shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .home-reels__copy {
    max-width: 720px;
  }
  .home-reels__track {
    justify-content: start;
  }
  .home-gallery__layout {
    grid-template-columns: 1fr;
  }
  .home-gallery__copy {
    max-width: 720px;
  }
  .home-gallery__grid {
    grid-auto-rows: 88px;
  }
  .hero {
    min-height: 720px;
  }
  .hero__content {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
  .hero__image,
  .page-hero--image img,
  .page-hero__image {
    width: 100%;
    opacity: .4;
  }
  .page-hero--premium {
    min-height: 680px;
    padding: 128px 0 70px;
  }
  .page-hero__grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }
  .page-hero__panel {
    max-width: 520px;
  }
  .page-hero__ring--one {
    width: 680px;
    right: -330px;
  }
  .page-hero__ring--two {
    width: 360px;
    right: -110px;
  }
  .split,
  .split--reverse,
  .service-row,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
  .value-grid,
  .testimonial-grid,
  .area-grid,
  .service-mini-grid,
  .stats {
    grid-template-columns: 1fr;
  }
  .services-cards .service-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .container,
  .container--narrow {
    width: min(100% - 28px, 1140px);
  }
  .site-header {
    top: 10px;
    width: calc(100% - 28px);
    min-height: 66px;
    padding: 8px 10px;
  }
  .site-header__brand {
    width: 50px;
    height: 50px;
  }
  .site-header__brand img {
    width: 40px;
    height: 40px;
  }
  .hero {
    align-items: flex-end;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: 104px;
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(250, 204, 21, .18);
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(250, 204, 21, .08) 0 1px, transparent 1px),
      linear-gradient(180deg, rgba(199, 184, 223, .08) 0 1px, transparent 1px),
      linear-gradient(180deg, transparent 0%, rgba(250, 204, 21, .08) 100%);
    background-size: 112px 112px, 112px 112px, auto;
    opacity: .55;
    pointer-events: none;
  }
  .hero::after {
    z-index: 0;
    background:
      linear-gradient(180deg, rgba(18, 8, 37, .38) 0%, rgba(18, 8, 37, .68) 42%, rgba(18, 8, 37, .96) 100%),
      linear-gradient(90deg, rgba(18, 8, 37, .98) 0%, rgba(18, 8, 37, .76) 46%, rgba(18, 8, 37, .38) 100%);
  }
  .hero__image {
    opacity: .68;
    object-position: 56% center;
    transform: scale(1.03);
  }
  .hero__content {
    position: relative;
    z-index: 2;
    width: calc(100% - 28px);
    margin-left: 14px;
    margin-right: 14px;
  }
  .hero__content::before {
    content: "";
    display: block;
    width: 62px;
    height: 3px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--accent));
    box-shadow: 0 0 22px rgba(250, 204, 21, .3);
  }
  .hero .eyebrow {
    min-height: 32px;
    margin-bottom: 14px;
    padding: 7px 12px;
    border: 1px solid rgba(250, 204, 21, .24);
    border-radius: 999px;
    background: rgba(5, 2, 10, .76);
    color: var(--gold-soft);
    font-size: 12px;
  }
  .hero__actions,
  .consent,
  .consent__actions {
    align-items: stretch;
    flex-direction: column;
  }
  h1 {
    font-size: 40px;
  }
  .hero h1 {
    max-width: 360px;
    margin-bottom: 18px;
    line-height: 1;
    text-shadow: 0 5px 28px rgba(0, 0, 0, .44);
  }
  .hero p,
  .page-hero p {
    max-width: 100%;
    font-size: 18px;
  }
  .hero p {
    max-width: 360px;
    color: rgba(238, 233, 248, .9);
    font-size: 17px;
    line-height: 1.58;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .42);
  }
  .hero__actions {
    gap: 12px;
    margin-top: 26px;
  }
  .hero__actions .button {
    min-height: 52px;
    line-height: 1.18;
    text-align: center;
    border-color: rgba(250, 204, 21, .38);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .38);
  }
  .hero__actions .button:first-child {
    background: linear-gradient(180deg, #05020a, #000);
  }
  .hero__actions .button--ghost {
    border-color: rgba(199, 184, 223, .42);
    background: rgba(5, 2, 10, .72);
  }
  .hero__mobile-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }
  .hero__mobile-proof span {
    min-width: 0;
    padding: 10px 11px;
    border: 1px solid rgba(199, 184, 223, .28);
    border-radius: 8px;
    background: rgba(5, 2, 10, .76);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 14px 30px rgba(0, 0, 0, .2);
  }
  .hero__mobile-proof strong,
  .hero__mobile-proof em {
    display: block;
  }
  .hero__mobile-proof strong {
    margin-bottom: 3px;
    color: var(--gold-soft);
    font-family: Poppins, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.1;
  }
  .hero__mobile-proof em {
    color: rgba(238, 233, 248, .78);
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
  }
  .section.home-reels {
    padding-top: 20px;
    padding-bottom: 70px;
  }
  .home-reels__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(236px, 78vw);
    grid-template-columns: none;
    gap: 14px;
    justify-content: start;
    margin-right: -14px;
    padding-right: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .home-reels__track::-webkit-scrollbar {
    display: none;
  }
  .home-reel {
    min-height: 390px;
    scroll-snap-align: start;
  }
  .home-reel__meta h3 {
    font-size: 21px;
  }
  .page-hero--premium {
    min-height: 640px;
    padding: 112px 0 52px;
  }
  .page-hero--premium h1 {
    font-size: clamp(36px, 11vw, 52px);
  }
  .page-hero__grid {
    gap: 26px;
  }
  .page-hero__panel {
    padding: 22px;
  }
  .page-hero__panel strong {
    font-size: 23px;
  }
  .page-hero__ring--one {
    width: 520px;
    right: -300px;
    top: 40%;
  }
  .page-hero__ring--two {
    width: 300px;
    top: 10%;
    right: -160px;
  }
  .services-intro {
    padding-bottom: 22px;
  }
  .services-cards .service-mini-grid {
    grid-template-columns: 1fr;
  }
  .home-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 138px;
    gap: 10px;
  }
  .home-gallery__item {
    grid-column: auto;
    grid-row: auto;
  }
  .home-gallery__item--1 {
    grid-column: 1 / -1;
    grid-row: span 2;
  }
  .consent {
    font-size: 14px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
    gap: 10px;
  }
  .consent__actions {
    flex-direction: row;
  }
  .consent .button {
    width: auto;
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
    flex: 1;
  }
  .button {
    width: 100%;
  }
  .section {
    padding: 68px 0;
  }
}
