:root {
  --blue-950: #09152c;
  --blue-900: #102a63;
  --blue-800: #1b47a0;
  --blue-700: #255fcf;
  --yellow-500: #f0c338;
  --yellow-400: #ffd75a;
  --white: #ffffff;
  --ink: #15233e;
  --muted: #5f6f89;
  --surface: rgba(255, 255, 255, 0.88);
  --line: rgba(21, 35, 62, 0.12);
  --shadow-soft: 0 20px 60px rgba(9, 21, 44, 0.12);
  --shadow-strong: 0 30px 80px rgba(9, 21, 44, 0.22);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(37, 95, 207, 0.2), transparent 32%),
    radial-gradient(circle at right center, rgba(240, 195, 56, 0.16), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 44%, #ffffff 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.28;
  pointer-events: none;
  z-index: -2;
}

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

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

h1,
h2,
h3,
.brand-copy strong,
.sign-title {
  font-family: "Rajdhani", sans-serif;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 251, 255, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 35px rgba(9, 21, 44, 0.08);
  border-color: rgba(16, 42, 99, 0.08);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 82px;
  position: relative;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 65%),
    var(--blue-900);
  position: relative;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.brand-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 38%, var(--white) 38%, var(--white) 56%, transparent 56%);
  opacity: 0.95;
}

.brand-badge::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--yellow-400);
  box-shadow: 0 0 0 6px rgba(255, 215, 90, 0.22);
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong {
  font-size: 1.85rem;
  line-height: 0.95;
  letter-spacing: 0.03em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  font-weight: 700;
  color: var(--muted);
  justify-self: center;
}

.header-actions {
  display: contents;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-700), var(--yellow-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.96rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-small {
  min-height: 46px;
  padding: 0 1.15rem;
  justify-self: end;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-900);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.button-solid {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  box-shadow: 0 14px 32px rgba(16, 42, 99, 0.26);
}

.button-outline {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 42, 99, 0.12);
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid,
.advantages-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-800);
}

.eyebrow::before {
  content: "";
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow-500), var(--blue-700));
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
}

.hero-text,
.section-heading p,
.advantages-copy p,
.contact-panel > p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions,
.hero-pills,
.service-tags,
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 42, 99, 0.08);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(16, 42, 99, 0.98), rgba(37, 95, 207, 0.96)),
    var(--blue-900);
  color: var(--white);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  display: grid;
  gap: 1rem;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(120deg, transparent 54%, rgba(255, 255, 255, 0.12) 54%, rgba(255, 255, 255, 0.12) 61%, transparent 61%);
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 90, 0.34) 0%, rgba(255, 215, 90, 0) 70%);
  pointer-events: none;
}

.sign-panel,
.visual-card,
.service-card,
.advantage-card,
.contact-panel,
.map-panel {
  position: relative;
  z-index: 1;
}

.sign-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 122px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.sign-main {
  display: grid;
  align-content: center;
  gap: 0.3rem;
  padding: 1.3rem 1.45rem;
  background: linear-gradient(90deg, var(--blue-700) 0%, #1d55ba 100%);
}

.sign-title {
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.92;
}

.sign-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.sign-arrow {
  width: 112px;
  background:
    linear-gradient(125deg, transparent 24%, var(--white) 24%, var(--white) 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.visual-card {
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.visual-card-primary {
  background: rgba(255, 255, 255, 0.08);
}

.visual-card-contact {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(240, 195, 56, 0.16)),
    rgba(255, 255, 255, 0.06);
}

.card-label {
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.service-tags span {
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.visual-card-contact a {
  display: inline-flex;
  margin-bottom: 0.8rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.visual-card-contact p:last-child {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.info-strip {
  padding: 1.2rem 0 1rem;
}

.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.info-strip-grid > div {
  padding: 1.3rem 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 42, 99, 0.08);
  box-shadow: var(--shadow-soft);
}

.info-strip-grid strong,
.section-heading h2,
.advantages-copy h2,
.contact-panel h2,
.service-card h3,
.advantage-card h3 {
  letter-spacing: 0.01em;
}

.info-strip-grid strong {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--blue-900);
  font-size: 1.02rem;
}

.info-strip-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.5rem;
  align-items: start;
}

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

.about-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 42, 99, 0.08);
  box-shadow: var(--shadow-soft);
}

.about-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400));
  color: var(--blue-950);
  font-weight: 800;
}

.about-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  line-height: 1;
}

.about-card p {
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding: 5rem 0;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.advantages-copy h2,
.contact-panel h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
}

.services-grid,
.advantages-list {
  display: grid;
  gap: 1rem;
}

.services-shell {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(16, 42, 99, 0.98), rgba(24, 71, 160, 0.96)),
    var(--blue-900);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.services-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.22;
  pointer-events: none;
}

.services-shell::after {
  content: "";
  position: absolute;
  left: -120px;
  top: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 90, 0.24) 0%, rgba(255, 215, 90, 0) 72%);
  pointer-events: none;
}

.services-intro,
.services-grid {
  position: relative;
  z-index: 1;
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 1.25rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.services-heading {
  margin-bottom: 0;
  max-width: none;
}

.services-heading .eyebrow,
.services-heading h2,
.services-heading p {
  color: var(--white);
}

.services-heading .eyebrow::before {
  background: linear-gradient(90deg, var(--yellow-400), rgba(255, 255, 255, 0.72));
}

.services-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.services-summary {
  display: grid;
  gap: 0.45rem;
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.services-summary strong {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(3.2rem, 6vw, 4.4rem);
  line-height: 0.88;
  color: var(--white);
}

.services-summary span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-summary p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

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

.service-card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 38px rgba(9, 21, 44, 0.14);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue-700), var(--yellow-500));
}

.service-card::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 95, 207, 0.12) 0%, rgba(37, 95, 207, 0) 72%);
  pointer-events: none;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(9, 21, 44, 0.2);
  border-color: rgba(37, 95, 207, 0.18);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 0.7rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  color: var(--white);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.service-meta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(37, 95, 207, 0.08);
  color: var(--blue-900);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card:nth-child(3n + 2) .service-badge {
  background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400));
  color: var(--blue-950);
}

.service-card:nth-child(3n + 3) .service-meta {
  background: rgba(240, 195, 56, 0.16);
}

.service-card h3,
.advantage-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  line-height: 1;
}

.service-card p,
.advantage-card p,
.contact-cards p {
  color: var(--muted);
  line-height: 1.7;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-areas:
    "large small-a small-b"
    "large wide wide";
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 42, 99, 0.08);
  box-shadow: var(--shadow-soft);
}

.gallery-item-large {
  grid-area: large;
}

.gallery-item-small-a {
  grid-area: small-a;
}

.gallery-item-small-b {
  grid-area: small-b;
}

.gallery-item-wide {
  grid-area: wide;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.gallery-item-large img {
  min-height: 100%;
}

.gallery-item figcaption {
  padding: 1rem 1.1rem 1.15rem;
  color: var(--ink);
  font-weight: 700;
}

.gallery-help {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.gallery-help code {
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: rgba(16, 42, 99, 0.08);
  color: var(--blue-900);
  font-family: "Manrope", sans-serif;
  font-size: 0.94em;
  font-weight: 800;
}

.advantages-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.advantages-copy {
  display: grid;
  gap: 1rem;
}

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

.advantage-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 252, 0.92));
  border: 1px solid rgba(16, 42, 99, 0.08);
  box-shadow: var(--shadow-soft);
}

.advantage-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400));
  color: var(--blue-950);
  font-weight: 800;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  align-items: start;
}

.reviews-summary {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(16, 42, 99, 0.98), rgba(14, 27, 58, 0.98)),
    var(--blue-950);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.reviews-summary .eyebrow,
.reviews-summary p {
  color: rgba(255, 255, 255, 0.8);
}

.reviews-summary .eyebrow::before {
  background: linear-gradient(90deg, var(--yellow-400), rgba(255, 255, 255, 0.65));
}

.reviews-summary h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
}

.reviews-score {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.reviews-score div {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.reviews-score strong {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(3.6rem, 8vw, 5rem);
  line-height: 0.9;
}

.reviews-score span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

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

.review-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 42, 99, 0.08);
  box-shadow: var(--shadow-soft);
}

.review-stars {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--yellow-500);
  letter-spacing: 0.14em;
  font-size: 1rem;
}

.review-card p {
  margin-bottom: 1rem;
  color: var(--ink);
  line-height: 1.75;
}

.review-card strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.review-card small {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.contact-panel,
.map-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.contact-panel {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(16, 42, 99, 0.98), rgba(14, 27, 58, 0.98)),
    var(--blue-950);
  color: var(--white);
  display: grid;
  gap: 1.1rem;
}

.contact-panel .eyebrow,
.contact-panel > p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel .eyebrow::before {
  background: linear-gradient(90deg, var(--yellow-400), rgba(255, 255, 255, 0.65));
}

.contact-cards article {
  flex: 1 1 220px;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-cards strong {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.contact-cards a {
  display: inline-flex;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.map-panel {
  min-height: 440px;
  border: 1px solid rgba(16, 42, 99, 0.08);
  background: rgba(255, 255, 255, 0.85);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 2rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 42, 99, 0.08);
  box-shadow: var(--shadow-soft);
}

.footer-brand,
.footer-column {
  display: grid;
  gap: 0.8rem;
}

.footer-brand strong,
.footer-column h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.footer-brand p,
.footer-column p,
.footer-column a,
.footer-bottom p,
.footer-bottom a {
  color: var(--muted);
  line-height: 1.7;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(16, 42, 99, 0.06);
  color: var(--blue-900);
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a,
.footer-column > a {
  width: fit-content;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-column > a:hover,
.footer-column > a:focus-visible {
  color: var(--blue-800);
  transform: translateX(2px);
}

.footer-credits {
  padding: 1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(16, 42, 99, 0.06), rgba(37, 95, 207, 0.02));
}

.footer-note {
  font-size: 0.92rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
}

.easter-egg {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: min(calc(100% - 2rem), 320px);
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(16, 42, 99, 0.96), rgba(9, 21, 44, 0.98)),
    var(--blue-950);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 60px rgba(9, 21, 44, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
  z-index: 40;
}

.easter-egg.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.easter-egg-label {
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.easter-egg-text {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .advantages-grid,
  .gallery-layout,
  .reviews-layout,
  .contact-grid,
  .services-grid,
  .advantages-list,
  .info-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .advantages-copy {
    grid-column: 1 / -1;
  }

  .about-copy {
    grid-column: 1 / -1;
  }

  .services-intro {
    grid-template-columns: 1fr;
  }

  .gallery-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "large large"
      "small-a small-b"
      "wide wide";
  }
}

@media (max-width: 800px) {
  .footer-row {
    flex-wrap: wrap;
  }

  .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions {
    position: absolute;
    top: calc(100% + 0.85rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(248, 251, 255, 0.98);
    border: 1px solid rgba(16, 42, 99, 0.08);
    box-shadow: 0 22px 50px rgba(9, 21, 44, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .site-header.menu-open .header-actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav {
    display: grid;
    gap: 0.85rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-grid,
  .about-values,
  .services-grid,
  .advantages-list,
  .reviews-layout,
  .reviews-grid,
  .gallery-layout,
  .info-strip-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-layout {
    grid-template-areas:
      "large"
      "small-a"
      "small-b"
      "wide";
  }

  .services-shell {
    padding: 1.2rem;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    max-width: none;
  }

  .site-nav a {
    display: inline-flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 0.2rem 0;
  }

  .header-actions .button-small {
    width: 100%;
  }

  .sign-panel {
    grid-template-columns: 1fr;
  }

  .sign-arrow {
    width: 100%;
    height: 64px;
    background:
      linear-gradient(180deg, transparent 24%, var(--white) 24%, var(--white) 50%, transparent 50%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  }

  .map-panel {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .header-row {
    min-height: 72px;
  }

  .brand-copy strong {
    font-size: 1.5rem;
  }

  .site-nav {
    gap: 0.8rem;
    font-size: 0.92rem;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-pills span,
  .contact-cards article {
    width: 100%;
  }

  .contact-panel {
    padding: 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .easter-egg {
    right: 1rem;
    bottom: 1rem;
  }
}
