:root {
  --ink: #eaf7ff;
  --muted: #91a7bc;
  --line: rgba(74, 230, 255, 0.16);
  --light: #f7fcff;
  --ice: #dff8ff;
  --ice-soft: rgba(247, 252, 255, 0.11);
  --ice-line: rgba(247, 252, 255, 0.34);
  --deep: #06101e;
  --surface: #0d1727;
  --soft: #0a1220;
  --teal: #20d8ff;
  --teal-dark: #0b86ff;
  --red: #ff3df2;
  --red-bright: #f15cff;
  --mint: rgba(32, 216, 255, 0.13);
  --peach: #101629;
  --sky: #07111e;
  --shadow: 0 20px 54px rgba(1, 8, 22, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #050914;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 40px;
  color: var(--ink);
  background: rgba(5, 9, 20, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(74, 230, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 9, 20, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.36);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  order: 1;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo {
  width: clamp(285px, 24vw, 380px);
  height: auto;
  max-height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(223, 248, 255, 0.3));
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  order: 2;
  gap: 22px;
  margin-left: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 8px;
  color: var(--deep);
  background: linear-gradient(135deg, var(--light), var(--ice) 48%, var(--teal));
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 0 30px rgba(223, 248, 255, 0.3);
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--red-bright));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.nav-toggle {
  display: none;
  order: 3;
  margin-left: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.09);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #050914;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("img/hero-cyberpunk-blue.png");
  background-size: cover;
  background-position: center right;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 9, 20, 0.98) 0%, rgba(5, 9, 20, 0.8) 35%, rgba(5, 9, 20, 0.08) 72%),
    linear-gradient(0deg, rgba(5, 9, 20, 0.95) 0%, rgba(5, 9, 20, 0.28) 42%, rgba(5, 9, 20, 0.28) 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(74, 230, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 230, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 74%);
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 48px));
  margin-left: 40px;
  padding-top: 92px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: #fff;
  font-size: 74px;
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(32, 216, 255, 0.22);
}

h2 {
  margin-bottom: 16px;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 28px;
  color: #bdd3e7;
  font-size: 21px;
}

.hero-actions,
.hero-strip,
.contact-grid,
.service-grid,
.advantage-list {
  display: grid;
}

.hero-actions {
  grid-template-columns: repeat(2, max-content);
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn.brand-icon-btn svg {
  fill: currentColor;
  stroke: none;
  stroke-width: 0;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(223, 248, 255, 0.24);
}

.btn.primary {
  color: var(--deep);
  background: linear-gradient(135deg, var(--light), var(--ice) 48%, var(--teal));
  border-color: var(--ice-line);
  box-shadow: 0 0 34px rgba(223, 248, 255, 0.25);
}

.btn.secondary {
  color: var(--light);
  background: var(--ice-soft);
  border-color: var(--ice-line);
  backdrop-filter: blur(10px);
}

.btn.social {
  color: var(--deep);
  background: linear-gradient(135deg, var(--light), var(--ice) 55%, var(--red-bright));
}

.hero-strip {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 24px;
  z-index: 2;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(74, 230, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 9, 20, 0.74);
  backdrop-filter: blur(14px);
}

.hero-strip span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: var(--teal);
  font-weight: 800;
  text-align: center;
}

.hero-strip span + span {
  border-left: 1px solid rgba(74, 230, 255, 0.16);
}

.about-section,
.quick-service,
.section,
.split-section,
.faq-section,
.instagram-section,
.contact-section {
  padding: 86px 40px;
}

.quick-service {
  padding-top: 28px;
  padding-bottom: 28px;
  background: linear-gradient(135deg, #050914 0%, #0a1424 52%, #150b24 100%);
}

.quick-service-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 14px;
}

.quick-service-inner > div,
.quick-service-inner > a {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 22px;
  border: 1px solid var(--ice-line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(247, 252, 255, 0.12), rgba(255, 255, 255, 0.05));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.quick-service-inner span {
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-service-inner strong {
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
}

.quick-service-inner a:last-child {
  color: var(--deep);
  background: linear-gradient(135deg, var(--light), var(--ice) 50%, var(--teal));
  box-shadow: 0 0 32px rgba(223, 248, 255, 0.18);
}

.quick-service-inner a:last-child span,
.quick-service-inner a:last-child strong {
  color: var(--deep);
}

.section-head,
.contact-copy {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-head h2,
.contact-copy h2 {
  color: #fff;
}

.service-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
  background: linear-gradient(135deg, #07111e 0%, #0d1727 54%, #160d25 100%);
}

.about-media {
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.about-copy {
  max-width: 620px;
}

.about-copy h2 {
  color: #fff;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.about-stats span {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--ice-line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(247, 252, 255, 0.13), rgba(255, 255, 255, 0.05));
  color: var(--muted);
  font-size: 14px;
}

.about-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ice);
  font-size: 18px;
}

.service-card {
  min-height: 250px;
  padding: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(247, 252, 255, 0.1) 0%, rgba(13, 23, 39, 0.92) 100%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover {
  border-color: var(--ice-line);
  box-shadow: 0 22px 48px rgba(223, 248, 255, 0.14);
  transform: translateY(-4px);
}

.service-photo {
  height: 154px;
  overflow: hidden;
  background: var(--mint);
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-photo img {
  transform: scale(1.06);
}

.service-card p,
.split-copy p,
.contact-copy p,
.profile p {
  color: var(--muted);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: -26px 28px 18px;
  border-radius: 8px;
  color: var(--deep);
  background: linear-gradient(135deg, var(--light), var(--ice));
  box-shadow: 0 0 28px rgba(223, 248, 255, 0.24);
  position: relative;
  z-index: 1;
}

.service-card h3,
.service-card p {
  padding: 0 28px;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-section {
  padding: 86px 40px;
  background: linear-gradient(135deg, #050914 0%, #081827 58%, #170d22 100%);
  color: var(--ink);
}

.gallery-head {
  width: min(1180px, 100%);
  margin: 0 auto 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.gallery-head h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: #fff;
}

.gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--ice-line);
  border-radius: 8px;
  color: var(--ice);
  font-weight: 800;
  white-space: nowrap;
}

.gallery-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0 18px;
  scroll-padding: 0;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--red) rgba(74, 230, 255, 0.1);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.gallery-grid::-webkit-scrollbar {
  height: 10px;
}

.gallery-grid::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(74, 230, 255, 0.1);
}

.gallery-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--red);
}

.gallery-item {
  position: relative;
  flex: 0 0 min(360px, 78vw);
  aspect-ratio: 4 / 3;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #0d1727;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  scroll-snap-align: start;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.gallery-item::after {
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  content: "";
}

.gallery-item figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover {
  box-shadow: 0 22px 44px rgba(32, 216, 255, 0.16);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, #08111d 0%, #0c1728 52%, #141028 100%);
}

.split-copy {
  max-width: 560px;
}

.advantage-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.advantage-item {
  min-height: 150px;
  padding: 24px;
  border-left: 4px solid var(--ice);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(247, 252, 255, 0.12), rgba(255, 255, 255, 0.05));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.advantage-item:hover {
  box-shadow: 0 20px 42px rgba(223, 248, 255, 0.13);
  transform: translateY(-3px);
}

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

.advantage-item strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 18px;
}

.advantage-item span {
  color: var(--muted);
}

.instagram-section {
  background: #07111e;
}

.faq-section {
  background: linear-gradient(180deg, #09121f 0%, #101629 100%);
}

.faq-list {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--ice-line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(247, 252, 255, 0.11), rgba(255, 255, 255, 0.05));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.faq-item summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--deep);
  background: linear-gradient(135deg, var(--light), var(--ice));
  content: "+";
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.instagram-panel {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(247, 252, 255, 0.16), rgba(32, 216, 255, 0.08), rgba(241, 92, 255, 0.12)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid var(--ice-line);
  box-shadow: var(--shadow);
}

.profile {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.profile img {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  border: 4px solid var(--ice-line);
  border-radius: 8px;
  object-fit: cover;
}

.profile h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 30px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.profile p:not(.eyebrow) {
  max-width: 550px;
  margin-bottom: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.contact-section {
  background: linear-gradient(135deg, var(--peach) 0%, #07111e 100%);
}

.contact-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.contact-item {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--ice-line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(247, 252, 255, 0.12), rgba(255, 255, 255, 0.05));
  font-style: normal;
}

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

.contact-item span {
  margin-bottom: 12px;
  color: var(--ice);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-item strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}

.map-wrap {
  width: min(1080px, 100%);
  height: 360px;
  margin: 18px auto 0;
  overflow: hidden;
  border: 1px solid var(--ice-line);
  border-radius: 8px;
  background: #07111e;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.site-footer {
  padding: 28px 40px;
  color: var(--ink);
  background: linear-gradient(135deg, #050914 0%, #101629 100%);
  border-top: 1px solid var(--ice-line);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand strong,
.footer-brand span,
.footer-contact a,
.footer-contact span {
  display: block;
}

.footer-brand span,
.footer-contact span {
  color: var(--muted);
  font-size: 14px;
}

.footer-contact {
  max-width: 360px;
  text-align: right;
}

.footer-contact a {
  margin-bottom: 4px;
  color: var(--ice);
  font-weight: 800;
}

.footer-credit {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--ice-line);
  color: var(--muted);
  font-size: 13px;
}

.footer-credit a {
  color: var(--ice);
  font-weight: 800;
}

.to-top,
.floating-social {
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.to-top {
  width: 44px;
  height: 44px;
  color: var(--deep);
  background: linear-gradient(135deg, var(--light), var(--ice));
}

.to-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-socials {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  gap: 10px;
}

.floating-social {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-social svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke: none;
}

.floating-social.phone {
  color: var(--deep);
  background: linear-gradient(135deg, var(--light), var(--ice));
}

.floating-social.whatsapp {
  background: #25d366;
}

.floating-social.instagram {
  background: linear-gradient(135deg, #ff3df2 0%, #8a7cff 58%, #20d8ff 100%);
}

.floating-social.facebook {
  background: #1877f2;
}

.floating-social::before {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  padding: 7px 10px;
  border-radius: 8px;
  color: #fff;
  background: rgba(18, 24, 25, 0.92);
  content: attr(data-label);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.floating-social:hover,
.floating-social:focus-visible {
  box-shadow: 0 18px 36px rgba(32, 216, 255, 0.2);
  transform: translateX(-4px) scale(1.04);
}

.floating-social:hover::before,
.floating-social:focus-visible::before {
  opacity: 1;
  transform: translate(0, -50%);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (max-width: 980px) {
  .site-header {
    padding: 14px 24px;
  }

  .nav-toggle {
    display: block;
  }

  .header-phone {
    margin-left: 0;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(5, 9, 20, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 10px;
  }

  .hero-content {
    width: min(680px, calc(100% - 48px));
    margin-left: 24px;
    margin-bottom: 0;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 32px;
  }

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

  .quick-service-inner {
    grid-template-columns: 1fr;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 340px;
  }

  .gallery-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid {
    width: 100%;
  }

  .gallery-item {
    flex-basis: min(380px, 82vw);
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .instagram-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .header-phone {
    display: none;
  }

  .brand-logo {
    width: min(250px, 66vw);
    max-height: 50px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-bg {
    background-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 9, 20, 0.98) 0%, rgba(5, 9, 20, 0.88) 62%, rgba(5, 9, 20, 0.42) 100%),
      linear-gradient(0deg, rgba(5, 9, 20, 0.96) 0%, rgba(5, 9, 20, 0.22) 58%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding-top: 124px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-text {
    font-size: 17px;
  }

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

  .btn {
    width: 100%;
  }

  .hero-strip {
    left: 16px;
    right: 16px;
    bottom: 18px;
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    min-height: 40px;
    font-size: 13px;
  }

  .hero-strip span + span {
    border-top: 1px solid rgba(74, 230, 255, 0.16);
    border-left: 0;
  }

  .section,
  .split-section,
  .about-section,
  .quick-service,
  .faq-section,
  .instagram-section,
  .gallery-section,
  .contact-section {
    padding: 62px 16px;
  }

  .service-grid,
  .about-stats,
  .advantage-list,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 280px;
  }

  .gallery-grid {
    width: calc(100% + 16px);
    margin-right: -16px;
    padding-right: 16px;
  }

  .gallery-link {
    width: 100%;
    justify-content: center;
  }

  .service-card,
  .advantage-item,
  .contact-item {
    min-height: auto;
  }

  .service-photo {
    height: 190px;
  }

  .map-wrap {
    height: 300px;
  }

  .instagram-panel {
    padding: 24px;
    overflow: hidden;
  }

  .profile {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 16px;
  }

  .profile h2 {
    width: 100%;
    font-size: clamp(25px, 8vw, 32px);
    line-height: 1.08;
  }

  .profile p:not(.eyebrow) {
    width: 100%;
  }

  .instagram-panel .btn {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    padding: 26px 16px 96px;
  }

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

  .footer-contact {
    text-align: left;
  }

  .floating-socials {
    left: 16px;
    right: 16px;
    bottom: 14px;
    top: auto;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(247, 252, 255, 0.16);
    border-radius: 999px;
    background: rgba(5, 9, 20, 0.76);
    backdrop-filter: blur(14px);
    transform: none;
  }

  .floating-social {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .floating-social svg {
    width: 24px;
    height: 24px;
  }

  .floating-social::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
