:root {
  --navy-950: #04162f;
  --navy-900: #071f3f;
  --navy-800: #0a2b55;
  --navy-700: #123e72;
  --blue-100: #e7f0fa;
  --accent: #f7c638;
  --accent-dark: #d9a90f;
  --ink: #10213b;
  --muted: #5d6878;
  --surface: #ffffff;
  --surface-soft: #f4f6f8;
  --line: #dfe4ea;
  --success: #15a36d;
  --shadow-sm: 0 8px 24px rgba(5, 24, 49, 0.08);
  --shadow-lg: 0 22px 60px rgba(5, 24, 49, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1200px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

.channel-icon {
  display: block;
  width: 1.08em;
  height: 1.08em;
  flex: 0 0 auto;
  color: currentColor;
}

.icon-phone {
  color: var(--navy-900);
}

.icon-telegram {
  color: #229ed9;
}

.icon-whatsapp {
  color: #25d366;
}

.icon-instagram {
  color: #e4405f;
}

.icon-facebook {
  color: #1877f2;
}

.icon-gmail {
  color: #ea4335;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #53a4ff;
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy-950);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

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

.section {
  padding: 72px 0;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 8vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.split-heading > p {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--navy-700);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(223, 228, 234, 0.9);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 24px rgba(4, 22, 47, 0.04);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: var(--navy-950);
  background: var(--accent);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: inset 0 0 0 1px rgba(4, 22, 47, 0.08);
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy strong {
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  display: none;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.25;
  white-space: nowrap;
}

.desktop-nav,
.header-phone,
.header-messenger {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 11px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #9aa3ae;
  background: var(--surface-soft);
}

.language-switcher a {
  display: grid;
  min-width: 29px;
  min-height: 32px;
  padding: 0 4px;
  place-items: center;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  font-size: 0.7rem;
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease;
}

.language-switcher a:hover {
  color: var(--navy-800);
  background: #fff;
}

.language-switcher a.is-active {
  color: #fff;
  background: var(--navy-900);
  box-shadow: 0 3px 10px rgba(4, 22, 47, 0.15);
}

.language-switcher span {
  font-size: 0.65rem;
}

.menu-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 11px 9px;
  align-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 3px;
  background: var(--navy-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-lg);
  max-height: calc(100svh - var(--header-height));
  overflow-y: auto;
}

.mobile-menu-inner {
  display: grid;
  padding-block: 14px 20px;
}

.mobile-menu a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-menu a:hover {
  color: var(--navy-700);
}

.mobile-menu .mobile-menu-phone {
  margin-top: 14px;
  padding: 13px 16px;
  border: 0;
  border-radius: 12px;
  color: var(--navy-950);
  background: var(--accent);
  text-align: center;
}

.mobile-menu .mobile-menu-telegram {
  display: flex;
  margin-top: 9px;
  padding: 13px 16px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: #168bd2;
  text-align: center;
}

.mobile-menu-telegram .icon-telegram {
  color: #fff;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button .channel-icon {
  width: 18px;
  height: 18px;
}

.header-messenger .channel-icon {
  width: 16px;
  height: 16px;
}

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

.button:active {
  transform: translateY(0);
}

.button-accent {
  color: var(--navy-950);
  background: var(--accent);
  box-shadow: 0 10px 30px rgba(247, 198, 56, 0.22);
}

.button-accent:hover {
  background: #ffd75e;
}

.button-light {
  color: var(--navy-950);
  background: #fff;
}

.button-light:hover {
  background: #f2f6fb;
}

.button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.button-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  place-items: center;
  color: #fff;
  background: var(--navy-950);
  isolation: isolate;
}

.hero-picture,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  z-index: -3;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  animation: hero-fade 500ms ease-out both;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 16, 36, 0.94) 0%, rgba(5, 25, 52, 0.84) 60%, rgba(5, 25, 52, 0.52) 100%),
    linear-gradient(0deg, rgba(3, 16, 36, 0.44), transparent 48%);
}

.hero-content {
  padding-block: 72px 100px;
}

.hero-kicker {
  display: flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 10px;
  color: #fff3c6;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker > span:first-child {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(247, 198, 56, 0.16);
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.6rem, 12vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 3.6vw, 1.22rem);
  line-height: 1.62;
}

.hero-actions {
  display: grid;
  max-width: 480px;
  margin-top: 30px;
  gap: 11px;
}

.hero-note {
  display: flex;
  margin-top: 23px;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-note-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--success);
  font-size: 0.75rem;
  font-weight: 900;
}

.scroll-cue {
  position: absolute;
  right: 16px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 700;
}

.scroll-cue span:last-child {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

@keyframes hero-fade {
  from { opacity: 0; transform: scale(1.015); }
  to { opacity: 1; transform: scale(1); }
}

.about {
  position: relative;
  overflow: hidden;
}

.about::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 34vw;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(231, 240, 250, 0.55));
  content: "";
  pointer-events: none;
}

.about-grid {
  position: relative;
  z-index: 1;
}

.about-heading {
  margin-bottom: 24px;
}

.about-content > p {
  max-width: 730px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.useful-copy {
  max-width: 760px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.useful-copy h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.3;
}

.useful-copy p {
  margin: 0;
  color: var(--muted);
}

.useful-copy p + p {
  margin-top: 12px;
}

.process-list {
  display: grid;
  margin: 32px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.process-list li {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
}

.process-list span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: var(--navy-900);
  background: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
}

.process-list strong {
  font-size: 0.92rem;
}

.gallery-section {
  background: var(--surface-soft);
}

.split-heading > p {
  max-width: 500px;
  margin: 18px 0 0;
}

.gallery-grid {
  display: grid;
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 270px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  isolation: isolate;
}

.gallery-item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(3, 16, 36, 0.82), transparent 56%);
  content: "";
  transition: background 180ms ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--navy-950);
  transition: transform 350ms ease;
}

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

.gallery-item:hover::after {
  background: linear-gradient(0deg, rgba(3, 16, 36, 0.9), rgba(3, 16, 36, 0.06) 70%);
}

.gallery-item > span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.centered-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading h2 {
  margin-inline: auto;
}

.centered-heading > p:last-child {
  max-width: 610px;
  margin: 18px auto 0;
}

.video-grid {
  display: grid;
  gap: 16px;
}

.video-card {
  display: grid;
  grid-template-rows: auto 1fr;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.video-card video {
  width: 100%;
  height: auto;
  aspect-ratio: 352 / 640;
  object-fit: cover;
  background: #06162b;
}

.video-card figcaption {
  display: grid;
  align-content: start;
  padding: 15px 16px 17px;
  gap: 5px;
  font-size: 0.9rem;
  line-height: 1.3;
}

.video-card figcaption strong {
  color: var(--ink);
}

.video-card figcaption span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.5;
}

.advantages {
  border-top: 1px solid var(--line);
  background: #fff;
}

.compact-heading {
  margin-bottom: 28px;
}

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

.advantage-card {
  min-height: 160px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 5px 20px rgba(5, 24, 49, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.advantage-card:hover {
  border-color: #c7d7e7;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.advantage-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  color: var(--navy-800);
  background: var(--blue-100);
}

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

.advantage-card h3 {
  margin: 18px 0 0;
  font-size: 0.94rem;
  line-height: 1.3;
}

.advantage-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.faq-heading {
  margin-bottom: 28px;
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.faq-item + .faq-item {
  border-top: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 68px;
  padding: 18px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
  color: var(--navy-700);
  background: #f8fafc;
}

.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--blue-100);
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-700);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 20px 20px;
  background: #f8fafc;
}

.faq-answer p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.furniture-promo {
  padding: 0 0 72px;
  background: var(--surface-soft);
}

.furniture-card {
  display: grid;
  padding: 30px;
  gap: 24px;
  border: 1px solid #ead584;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 95% 0%, rgba(247, 198, 56, 0.3), transparent 36%),
    #fff9e7;
  box-shadow: var(--shadow-sm);
}

.furniture-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 7vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.furniture-card p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
}

.furniture-button {
  width: fit-content;
}

.contact-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(28, 88, 147, 0.55), transparent 33%),
    var(--navy-950);
}

.contact-section::before {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.025), 0 0 0 80px rgba(255, 255, 255, 0.018);
  content: "";
}

.contact-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 38px;
}

.contact-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.35rem, 10vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.03rem;
}

.contact-details {
  display: grid;
  margin-top: 28px;
  gap: 1px;
}

.contact-details a {
  display: grid;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 160ms ease;
}

.contact-details a:hover {
  color: var(--accent);
}

.contact-details span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details strong {
  overflow-wrap: anywhere;
  font-size: 0.97rem;
}

.contact-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.contact-panel > p:first-child {
  margin: 0 0 18px;
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.contact-button {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.83rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.contact-button:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.contact-button > span:first-child {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: var(--navy-950);
  background: #fff;
  font-weight: 900;
}

.contact-icon-box .channel-icon {
  width: 18px;
  height: 18px;
}

.contact-button-primary {
  color: var(--navy-950);
  border-color: var(--accent);
  background: var(--accent);
}

.contact-button-primary:hover {
  border-color: #ffd75e;
  background: #ffd75e;
}

.contact-button-primary > span:first-child {
  background: rgba(255, 255, 255, 0.75);
}

.contact-area {
  display: flex;
  margin: 18px 0 0;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.site-footer {
  color: #c6cfda;
  background: #020d1c;
}

.footer-top {
  display: grid;
  padding-top: 40px;
  padding-bottom: 30px;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand strong {
  color: #fff;
}

.footer-brand p {
  max-width: 360px;
  margin: 2px 0 0;
  color: #7f8b99;
  font-size: 0.82rem;
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-contacts a {
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.footer-contacts a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  padding-top: 20px;
  padding-bottom: 102px;
  flex-direction: column;
  gap: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #6e7987;
  font-size: 0.74rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-contact-bar {
  position: fixed;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  left: 10px;
  z-index: 950;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 17px;
  background: rgba(4, 22, 47, 0.96);
  box-shadow: 0 16px 45px rgba(2, 13, 28, 0.35);
  backdrop-filter: blur(14px);
}

.mobile-contact-bar a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 11px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
}

.mobile-contact-bar .channel-icon {
  width: 17px;
  height: 17px;
}

.mobile-contact-bar .mobile-call {
  color: var(--navy-950);
  background: var(--accent);
}

.mobile-contact-bar .mobile-telegram {
  background: #168bd2;
}

.mobile-contact-bar .mobile-telegram .icon-telegram {
  color: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: grid;
  padding: 58px 12px 20px;
  place-items: center;
  color: #fff;
  background: rgba(1, 8, 18, 0.94);
  backdrop-filter: blur(12px);
}

.lightbox-figure {
  display: grid;
  width: min(100%, 1100px);
  height: min(78svh, 820px);
  margin: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  place-items: center;
}

.lightbox-figure img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-figure figcaption {
  min-height: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  color: #fff;
  background: rgba(4, 22, 47, 0.84);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--navy-700);
  transform: scale(1.05);
}

.lightbox-close {
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

@media (min-width: 520px) {
  .brand-copy small {
    display: block;
  }

  .hero-actions {
    display: flex;
    max-width: none;
    flex-wrap: wrap;
  }

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

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

  .gallery-item {
    min-height: 300px;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 379px) {
  .brand-copy {
    display: none;
  }

  .header-messenger {
    display: none;
  }
}

@media (min-width: 380px) and (max-width: 599px) {
  .header-messenger {
    position: relative;
    width: 42px;
    min-width: 42px;
    padding: 0;
  }

  .header-messenger .channel-icon {
    width: 19px;
    height: 19px;
  }

  .header-messenger span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

@media (min-width: 768px) {
  :root {
    --header-height: 82px;
  }

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

  .section {
    padding: 104px 0;
  }

  .header-phone {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    color: var(--navy-900);
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .header-phone-icon {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 9px;
    color: var(--navy-900);
    background: var(--blue-100);
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

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

  .hero {
    min-height: min(820px, calc(100svh - var(--header-height)));
  }

  .hero-content {
    padding-block: 100px 130px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 16, 36, 0.96) 0%, rgba(5, 25, 52, 0.83) 48%, rgba(5, 25, 52, 0.28) 100%),
      linear-gradient(0deg, rgba(3, 16, 36, 0.42), transparent 50%);
  }

  .hero h1 {
    max-width: 800px;
  }

  .scroll-cue {
    right: 32px;
    bottom: 28px;
  }

  .about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 70px;
  }

  .about-heading {
    margin-bottom: 0;
  }

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

  .process-list li {
    min-height: 128px;
    align-items: flex-start;
    flex-direction: column;
  }

  .split-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }

  .split-heading > p {
    margin: 0 0 3px;
  }

  .gallery-grid {
    gap: 16px;
  }

  .gallery-item {
    min-height: 380px;
  }

  .gallery-item-wide {
    min-height: 350px;
  }

  .video-card video {
    height: 560px;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .video-card figcaption {
    min-height: 104px;
    padding: 18px 20px 20px;
  }

  .advantages-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .advantage-card {
    min-height: 210px;
    padding: 28px 24px;
  }

  .advantage-card h3 {
    margin-top: 24px;
    font-size: 1.05rem;
  }

  .faq-layout {
    display: grid;
    grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
    align-items: start;
    gap: 70px;
  }

  .faq-heading {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    margin-bottom: 0;
  }

  .furniture-promo {
    padding-bottom: 104px;
  }

  .furniture-card {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 44px;
    align-items: center;
    gap: 50px;
  }

  .contact-wrap {
    grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.7fr);
    align-items: end;
    gap: 70px;
  }

  .contact-details {
    grid-template-columns: auto auto;
    gap: 0 26px;
  }

  .contact-details a:last-child {
    grid-column: 1 / -1;
  }

  .footer-top {
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .footer-contacts {
    justify-content: flex-end;
  }

  .footer-bottom {
    padding-bottom: 24px;
  }

  .mobile-contact-bar {
    display: none;
  }

  .lightbox {
    padding: 58px 72px 28px;
  }

  .lightbox-close {
    top: 22px;
    right: 24px;
  }

  .lightbox-prev {
    left: 22px;
  }

  .lightbox-next {
    right: 22px;
  }
}

@media (min-width: 1220px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 23px;
  }

  .desktop-nav a {
    position: relative;
    color: #445166;
    font-size: 0.79rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    content: "";
    transform: scaleX(0);
    transition: transform 160ms ease;
  }

  .desktop-nav a:hover::after {
    transform: scaleX(1);
  }

  .header-messenger {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-image {
    object-position: center;
  }

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

@media (min-width: 1220px) {
  .header-actions {
    gap: 15px;
  }

  .desktop-nav {
    gap: 28px;
  }

  .gallery-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 360px 320px;
  }

  .gallery-item {
    min-height: 0;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 12;
    grid-row: span 1;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) {
    grid-column: span 4;
    grid-row: span 1;
  }
}

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