:root {
  --bg-main: #0c1325;
  --bg-elev: rgba(9, 14, 28, 0.62);
  --bg-card: rgba(14, 20, 36, 0.78);
  --text: #ececf1;
  --muted: #c7c9d2;
  --gold-1: #e0c37a;
  --gold-2: #b48749;
  --line: rgba(222, 224, 231, 0.24);
  --shadow: 0 18px 45px rgba(3, 7, 14, 0.45);
  --first-block-gap: clamp(24px, 3vw, 36px);
  --first-block-bottom-gap: clamp(32px, 4vw, 52px);
  --first-panel-padding: clamp(18px, 2.4vw, 30px);
  --first-title-gap: 12px;
  --first-subtext-size: clamp(18px, 1.45vw, 24px);
  --first-subtext-line: 1.42;
  --first-subtext-color: rgba(236, 239, 246, 0.9);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg-main);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(180deg, rgba(4, 8, 16, 0.75), rgba(6, 10, 20, 0.86)),
    url("assets/ui/texture-top.jpg");
  background-size: cover;
  background-position: center;
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 14%, rgba(212, 173, 103, 0.22), transparent 38%),
    radial-gradient(circle at 86% 8%, rgba(111, 92, 57, 0.24), transparent 28%);
}

.container {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.glass {
  background: linear-gradient(180deg, rgba(14, 19, 34, 0.74), rgba(12, 17, 30, 0.66));
  backdrop-filter: blur(3px);
  border: 1px solid rgba(217, 186, 117, 0.24);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-left: 0;
  border-right: 0;
  transition: background-color 0.24s ease, border-color 0.24s ease;
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 98px;
  transition: min-height 0.24s ease, padding 0.24s ease;
}

.topbar .phone {
  justify-self: start;
  font-size: 31px;
  color: #e8d7b2;
  white-space: nowrap;
  letter-spacing: 0.2px;
  transition: font-size 0.24s ease;
}

.logo img {
    width: min(400px, 100%);
    display: block;
    transition: width 0.24s ease, transform 0.24s ease;
    margin: auto;

}

.topbar .logo {
  justify-self: center;
}

.logo,
.logo.small {
  position: relative;
  display: inline-block;
  isolation: isolate;
  overflow: hidden;
}

.logo::after,
.logo.small::after {
  display: none;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 46%,
    rgba(250, 224, 160, 0.52) 50%,
    transparent 54%
  );
  background-size: 260% 100%;
  background-position: -260% 0;
  animation: logoGoldSweep 12s linear infinite;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
}

@supports ((-webkit-mask-image: url("")) or (mask-image: url(""))) {
  .logo::after,
  .logo.small::after {
    display: block;
    -webkit-mask-image: url("assets/ui/logo.png");
    mask-image: url("assets/ui/logo.png");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
  }
}

.topbar .logo img {
  transform: none;
}

.topbar .btn {
  justify-self: end;
}

.nav-row {
  min-height: 56px;
  border-top: 1px solid var(--line);
  transition: min-height 0.24s ease;
}

.menu-toggle {
  display: none;
}

.header-order-short {
  display: none;
}

.nav-row nav {
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-row a {
  font-size: 37px;
  font-family: "Oranienbaum", serif;
  color: rgba(241, 242, 246, 0.94);
  position: relative;
  padding: 0 12px;
  transition: font-size 0.24s ease, color 0.24s ease, text-shadow 0.24s ease, filter 0.24s ease;
}

.nav-row a.active {
  color: var(--gold-1);
}

.nav-row a:hover {
  color: #f0d699;
  text-shadow:
    0 0 10px rgba(233, 198, 128, 0.55),
    0 0 22px rgba(179, 131, 64, 0.35);
  filter: saturate(1.06);
}

.nav-row a + a::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: rgba(231, 231, 238, 0.3);
}

.header.is-compact .topbar {
  min-height: 76px;
}

.header.is-compact .topbar .phone {
  font-size: 24px;
}

.header.is-compact .logo img {
  width: min(300px, 100%);
  transform: none;
  margin: auto;
}

.header.is-compact .nav-row {
  min-height: 48px;
}

.header.is-compact .nav-row a {
  font-size: 31px;
}

.hero {
  position: relative;
  padding: var(--first-block-gap) 0 var(--first-block-bottom-gap);
}

.landing-page .hero {
  padding-bottom: clamp(84px, 8vw, 126px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 12, 24, 0.85) 8%, rgba(7, 12, 24, 0.34) 55%, rgba(7, 12, 24, 0.65) 100%),
    url("assets/ui/hero.jpg") center right / cover no-repeat;
  z-index: -1;
  border-bottom: 1px solid rgba(225, 192, 126, 0.2);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
}

.hero-copy {
  max-width: 640px;
  padding: var(--first-panel-padding) 0;
  text-shadow: 0 3px 18px rgba(3, 6, 14, 0.45);
}

.hero-kicker,
.section-eyebrow {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(228, 198, 137, 0.86);
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Oranienbaum", serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(48px, 5vw, 88px);
  line-height: 1.05;
  margin-bottom: var(--first-title-gap);
}

.hero-copy p {
  margin: 0;
  max-width: 620px;
  color: var(--first-subtext-color);
  font-size: var(--first-subtext-size);
  line-height: var(--first-subtext-line);
}

.hero-copy .hero-kicker {
  font-size: 15px;
  color: rgba(228, 198, 137, 0.86);
  line-height: 1.4;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 8px;
  max-width: 520px;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(241, 243, 248, 0.92);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.4;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #efd7a2, #bf8d47);
  box-shadow: 0 0 10px rgba(208, 161, 83, 0.42);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 4px;
  min-height: 46px;
  padding: 10px 24px;
  font-size: 26px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.24s ease, filter 0.24s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn.big {
  min-height: 46px;
  padding: 9px 20px;
  font-size: 28px;
}

.btn-gold {
  color: #2f220f;
  border-color: #ba9051;
  background: linear-gradient(180deg, var(--gold-1), #c89957);
  box-shadow: inset 0 0 0 1px rgba(250, 237, 198, 0.4), 0 10px 25px rgba(7, 10, 16, 0.42);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-gold::before {
  content: "";
  position: absolute;
  inset: -140% -25%;
  background: linear-gradient(110deg, transparent 34%, rgba(255, 245, 215, 0.36) 50%, transparent 66%);
  transform: translateX(-62%);
  animation: goldSheen 4.6s ease-in-out infinite;
  pointer-events: none;
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 248, 224, 0.32) 0%,
    rgba(255, 248, 224, 0.08) 26%,
    transparent 56%
  );
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.btn-gold.is-glow::after {
  opacity: 1;
}

@keyframes goldSheen {
  0% {
    transform: translateX(-62%);
  }

  56%,
  100% {
    transform: translateX(66%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-gold::before {
    animation: none;
  }
}

.btn-dark {
  color: #eff1f6;
  border-color: rgba(214, 185, 122, 0.48);
  background: rgba(16, 22, 38, 0.78);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(5, 8, 16, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  width: min(880px, 95vw);
  max-height: min(90vh, 920px);
  overflow: auto;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 18px;
  border: 1px solid rgba(226, 190, 122, 0.5);
  background: linear-gradient(180deg, rgba(18, 23, 39, 0.88), rgba(13, 18, 33, 0.9)),
    url("assets/ui/texture-top.jpg") center / cover no-repeat;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.48);
  position: relative;
  scrollbar-width: thin;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(230, 197, 130, 0.8);
  background: rgba(13, 18, 31, 0.72);
  color: #e7c88d;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-box h2 {
  font-size: clamp(34px, 4vw, 56px);
  color: #ead4a8;
  margin-bottom: 8px;
  padding-right: 42px;
}

.modal-subtitle {
  margin: 0 0 18px;
  color: rgba(239, 240, 246, 0.9);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.35;
  max-width: 690px;
  text-wrap: balance;
}

.order-form {
  display: grid;
  gap: 12px;
}

.order-form label {
  display: grid;
  gap: 6px;
}

.order-form label span {
  font-size: 16px;
  color: #e3c995;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  min-height: 52px;
  border-radius: 10px;
  border: 1px solid rgba(226, 188, 120, 0.45);
  background: rgba(10, 15, 28, 0.6);
  color: #f0f2f7;
  font-family: inherit;
  font-size: 18px;
  padding: 12px 14px;
}

.order-form textarea {
  min-height: 110px;
  resize: vertical;
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: rgba(205, 209, 220, 0.7);
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: none;
  border-color: rgba(239, 206, 140, 0.95);
  box-shadow: 0 0 0 2px rgba(202, 162, 89, 0.18);
}

.form-note {
  margin: 8px 0 0;
  color: rgba(216, 220, 229, 0.86);
  font-size: 14px;
}

.form-note a {
  color: #f0d59a;
  text-decoration: underline;
  text-decoration-color: rgba(240, 213, 154, 0.55);
  text-underline-offset: 3px;
}

.form-note a:hover {
  color: #f6e1b5;
}

.smart-captcha-shell {
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(226, 188, 120, 0.28);
  background: rgba(8, 13, 24, 0.44);
  overflow-x: auto;
}

.smart-captcha-box {
  min-height: 84px;
}

.form-status {
  margin: 4px 0 0;
  min-height: 24px;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(232, 236, 245, 0.9);
}

.form-status.is-sending {
  color: rgba(230, 206, 151, 0.95);
}

.form-status.is-success {
  color: #b6e7be;
}

.form-status.is-error {
  color: #ffc8ba;
}

.order-form .btn.big {
  margin-top: 4px;
  justify-self: center;
}

.hero-visual {
  justify-self: end;
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(11, 16, 29, 0.7), rgba(10, 15, 26, 0.75));
  border: 1px solid rgba(225, 189, 118, 0.27);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.focus-shot,
.accent-shot {
  position: absolute;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(221, 186, 116, 0.28);
}

.focus-shot {
  inset: 18px 18px 120px 18px;
}

.accent-shot {
  width: 56%;
  height: 30%;
  right: 16px;
  bottom: 16px;
}

.section {
  padding: clamp(44px, 5.2vw, 86px) 0;
}

.section h2 {
  text-align: center;
  font-size: clamp(44px, 3.8vw, 72px);
  margin-bottom: 28px;
}

.section-intro {
  width: min(860px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}

.section-intro p:last-child {
  margin: 0;
  color: rgba(227, 231, 240, 0.84);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.55;
}

.section-light {
  color: #1b1a16;
  background:
    linear-gradient(180deg, rgba(243, 234, 213, 0.98), rgba(229, 216, 190, 0.96)),
    radial-gradient(circle at top left, rgba(195, 155, 91, 0.14), transparent 30%);
  border-top: 1px solid rgba(163, 122, 60, 0.18);
  border-bottom: 1px solid rgba(163, 122, 60, 0.18);
}

.section-light h2,
.section-light .section-eyebrow {
  color: #2e2416;
}

.section-light .section-intro p:last-child,
.section-light p {
  color: rgba(45, 35, 23, 0.82);
}

.section-light-soft {
  background: linear-gradient(180deg, rgba(18, 23, 37, 0.92), rgba(11, 15, 27, 0.98));
  border-top: 1px solid rgba(218, 188, 125, 0.16);
}

.trust-strip {
  margin-top: clamp(18px, 2.8vw, 38px);
  padding: 0 0 clamp(24px, 3.2vw, 38px);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-strip article {
  padding: 18px 16px;
  border-radius: 14px;
  border: 1px solid rgba(220, 187, 119, 0.24);
  background: linear-gradient(180deg, rgba(12, 18, 32, 0.78), rgba(9, 14, 26, 0.84));
  text-align: center;
}

.trust-strip strong {
  display: block;
  font-family: "Oranienbaum", serif;
  font-size: clamp(30px, 2.6vw, 42px);
  color: #efd8a6;
  line-height: 1;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: rgba(221, 225, 233, 0.85);
  font-size: 16px;
  line-height: 1.4;
}

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

.benefits article {
  background: var(--bg-card);
  border: 1px solid rgba(224, 189, 115, 0.28);
  border-radius: 14px;
  padding: 18px 16px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.benefits article:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 200, 132, 0.55);
}

.benefits h3 {
  font-size: 25px;
  color: #f0dfbc;
  margin-bottom: 8px;
}

.benefits p {
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
  color: var(--muted);
}

.section-dark {
  background: linear-gradient(180deg, rgba(5, 10, 20, 0.72), rgba(8, 14, 28, 0.76)),
    url("assets/ui/texture-mid.jpg") center / cover no-repeat;
  border-top: 1px solid rgba(217, 186, 117, 0.2);
  border-bottom: 1px solid rgba(217, 186, 117, 0.2);
}

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

.work-card {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(214, 186, 122, 0.28);
  background: rgba(14, 20, 35, 0.9);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.work-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 200, 132, 0.6);
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.work-card-copy {
  display: grid;
  gap: 4px;
  padding: 14px 12px 16px;
}

.work-card-copy strong,
.work-card-copy span,
.work-card-copy em {
  display: block;
  text-align: left;
}

.work-card-copy strong {
  font-size: 21px;
  color: #f0dbaf;
  font-weight: 700;
}

.work-card-copy span {
  font-size: 15px;
  color: rgba(231, 235, 243, 0.84);
}

.work-card-copy em {
  font-size: 14px;
  font-style: normal;
  color: #d8b976;
}

.section-dark-soft {
  background: linear-gradient(180deg, rgba(7, 12, 24, 0.58), rgba(8, 13, 26, 0.74));
}

.about-inner {
  max-width: 920px;
}

.about p {
  margin: 0 0 12px;
  text-align: center;
  color: rgba(236, 239, 245, 0.88);
  font-size: clamp(18px, 1.2vw, 21px);
  line-height: 1.55;
}

.lead {
  border-left: 0;
  border-right: 0;
}

.lead-inner {
  text-align: center;
  width: min(860px, 100%);
  margin: 0 auto;
}

.lead-inner p {
  margin: 10px 0 0;
  font-size: 23px;
  color: #d5d8e3;
}

.lead .btn {
  margin-top: 20px;
}

.lead .hero-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lead .hero-actions .btn {
  margin-top: 0;
}

.audience-inner {
  display: grid;
  gap: 18px;
}

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

.audience-list article {
  padding: 22px 20px;
  border-radius: 14px;
  background: rgba(255, 252, 246, 0.62);
  border: 1px solid rgba(170, 128, 65, 0.18);
  box-shadow: 0 10px 26px rgba(77, 54, 24, 0.08);
}

.audience-list h3 {
  font-size: 28px;
  color: #322515;
  margin-bottom: 8px;
}

.audience-list p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(50, 37, 21, 0.82);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-steps article {
  position: relative;
  padding: 18px 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(219, 186, 121, 0.24);
  background: rgba(11, 17, 31, 0.54);
}

.process-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  font-family: "Oranienbaum", serif;
  font-size: 24px;
  color: #2f220f;
  background: linear-gradient(180deg, #ead3a1, #c4904a);
}

.process-steps h3 {
  font-size: 24px;
  color: #f0dbaf;
  margin-bottom: 8px;
}

.process-steps p {
  margin: 0;
  color: rgba(225, 229, 237, 0.82);
  font-size: 16px;
  line-height: 1.45;
}

.seo-copy {
  padding-top: clamp(34px, 4vw, 52px);
  padding-bottom: clamp(34px, 4vw, 52px);
}

.seo-copy-inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.seo-copy-inner h2 {
  margin-bottom: 18px;
}

.seo-copy-inner p {
  margin: 0 0 12px;
  text-align: center;
  color: rgba(228, 232, 240, 0.84);
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.6;
}

.footer {
  padding: 20px 0 26px;
  border-top: 1px solid rgba(218, 189, 123, 0.23);
  background: linear-gradient(180deg, rgba(8, 12, 23, 0.88), rgba(7, 10, 19, 0.9));
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.logo.small img {
  width: 280px;
}

.footer p {
  margin: 0;
  text-align: center;
  color: rgba(218, 221, 230, 0.86);
  font-size: 15px;
}

.footer .phone {
  font-size: 22px;
  color: #e8d6af;
}

.reveal-up {
  animation: rise 0.8s ease both;
}

.reveal-up-delayed {
  animation: rise 1s ease 0.12s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1150px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
    min-height: 84px;
  }

  .topbar .phone {
    font-size: 22px;
  }

  .logo img {
    width: min(380px, 100%);
    margin: 0 auto;
  }

  .nav-row a {
    font-size: 28px;
  }

  h1 {
    font-size: clamp(42px, 4.6vw, 62px);
  }

  .hero-copy p {
    font-size: clamp(18px, 1.6vw, 23px);
  }

  .btn,
  .btn.big {
    font-size: 19px;
  }

  .btn.big {
    min-height: 58px;
  }

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

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

  .trust-strip-inner,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .header,
  .topbar,
  .topbar .phone,
  .logo img,
  .nav-row,
  .nav-row a {
    transition: none;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "phone phone"
      "logo menu"
      "cta cta";
    justify-items: stretch;
    align-items: center;
    gap: 12px 14px;
    padding: 12px 0;
  }

  .topbar .phone {
    grid-area: phone;
    justify-self: center;
    text-align: center;
  }

  .topbar .logo {
    grid-area: logo;
    justify-self: start;
  }

  .topbar .logo img {
    width: min(320px, 100%);
    transform: none;
  }

  .topbar .btn {
    grid-area: cta;
    justify-self: center;
    width: min(360px, 100%);
    min-height: 48px;
    font-size: 17px;
  }

  .menu-toggle {
    display: inline-flex;
    grid-area: menu;
    width: 56px;
    min-width: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    margin: 0;
    padding: 0;
    justify-self: end;
    border: 1px solid rgba(217, 184, 117, 0.38);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(12, 18, 33, 0.88), rgba(10, 14, 27, 0.82));
    color: #ecd9b0;
    font-family: "Manrope", sans-serif;
    font-size: 0;
    box-shadow: 0 10px 24px rgba(3, 7, 14, 0.25);
  }

  .menu-toggle span:last-child {
    display: none;
  }

  .menu-toggle__icon {
    position: relative;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    box-shadow:
      0 -7px 0 currentColor,
      0 7px 0 currentColor;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
  }

  .header.menu-open .menu-toggle__icon {
    transform: rotate(45deg);
    box-shadow: 0 0 0 transparent, 0 0 0 transparent;
  }

  .header.menu-open .menu-toggle__icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: currentColor;
    transform: rotate(90deg);
  }

  .nav-row {
    display: none;
    min-height: auto;
    padding: 6px 0 14px;
  }

  .header.menu-open .nav-row {
    display: block;
  }

  .header.menu-open .nav-row nav {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .header.menu-open .nav-row a {
    display: block;
    padding: 10px 14px;
    font-size: 26px;
    text-align: center;
    border: 1px solid rgba(217, 184, 117, 0.18);
    border-radius: 8px;
    background: rgba(11, 16, 30, 0.42);
  }

  .header.menu-open .nav-row a.active {
    background: rgba(181, 139, 72, 0.14);
    border-color: rgba(217, 184, 117, 0.28);
  }

  .header.is-compact .topbar {
    grid-template-columns: auto auto 1fr;
    grid-template-areas: "logo menu cta";
    min-height: auto;
    gap: 10px;
    padding: 8px 0;
  }

  .header.is-compact .topbar .phone {
    display: none;
  }

  .header.is-compact .topbar .logo {
    justify-self: start;
  }

  .header.is-compact .logo img {
    width: clamp(150px, 28vw, 190px);
    transform: none;
  }

  .header.is-compact .topbar .menu-toggle {
    width: 44px;
    min-width: 44px;
    min-height: 42px;
    justify-self: center;
    box-shadow: none;
  }

  .header.is-compact .topbar .btn {
    width: auto;
    min-height: 42px;
    padding: 0 14px;
    margin: 0;
    justify-self: end;
    font-size: 14px;
    white-space: nowrap;
    max-width: 152px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header.is-compact .header-order-full {
    display: none;
  }

  .header.is-compact .header-order-short {
    display: inline;
  }

  .nav-row a {
    font-size: 20px;
  }

  .nav-row a + a::before {
    display: none;
  }

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

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    justify-self: center;
    width: min(100%, 360px);
  }

  .section h2 {
    font-size: clamp(34px, 7vw, 46px);
  }

  .audience-list,
  .process-steps {
    grid-template-columns: 1fr;
  }

.lead-inner p {
  font-size: 18px;
}

.lead-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lead-actions .btn {
  width: auto;
}

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .footer .phone {
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1240px, 94vw);
  }

  .logo img {
    width: 260px;
  }

  .topbar .phone {
    font-size: 18px;
  }

  .topbar .btn {
    width: 100%;
  }

  .topbar {
    gap: 10px 12px;
  }

  .topbar .logo img {
    width: min(250px, 100%);
  }

  .header.is-compact .logo img {
    width: clamp(126px, 36vw, 156px);
  }

  .header.is-compact .topbar .btn {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header.is-compact .topbar {
    grid-template-columns: auto auto 1fr;
    justify-items: stretch;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    min-height: auto;
  }

  .header.is-compact .topbar .phone {
    display: none;
  }

  .header.is-compact .topbar .logo {
    justify-self: start;
  }

  .header.is-compact .topbar .logo img {
    width: clamp(150px, 38vw, 182px);
  }

  .header.is-compact .topbar .menu-toggle {
    width: 46px;
    min-width: 46px;
    min-height: 42px;
    margin: 0;
    padding: 0;
    justify-self: center;
    border-radius: 10px;
    font-size: 0;
    box-shadow: none;
  }

  .header.is-compact .topbar .menu-toggle span:last-child {
    display: none;
  }

  .header.is-compact .topbar .btn {
    width: auto;
    min-height: 42px;
    margin: 0;
    padding: 0 14px;
    justify-self: end;
    font-size: 14px;
    white-space: nowrap;
  }

  .header.is-compact .nav-row {
    padding-top: 8px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 44px);
    margin-bottom: 12px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-points li,
  .section-intro p:last-child,
  .audience-list p,
  .process-steps p,
  .seo-copy-inner p,
  .trust-strip span {
    font-size: 15px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .btn,
  .btn.big {
    width: 100%;
    font-size: 17px;
    min-height: 50px;
  }

  .hero-visual {
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .benefits,
  .works-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .benefits h3 {
    font-size: 21px;
  }

  .benefits p,
  .about p {
    font-size: 15px;
  }

  .modal-box h2 {
    font-size: 32px;
  }

  .modal-overlay {
    padding: 10px;
  }

  .modal-box {
    width: min(880px, 96vw);
    max-height: min(92vh, 920px);
    padding: 16px 14px 18px;
    border-radius: 14px;
  }

  .modal-close {
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    font-size: 24px;
  }

  .modal-subtitle {
    margin-bottom: 14px;
    font-size: 16px;
    max-width: 100%;
  }

  .order-form input,
  .order-form select,
  .order-form textarea {
    min-height: 46px;
    font-size: 16px;
  }

  .form-note,
  .form-status {
    font-size: 14px;
  }

  .smart-captcha-shell {
    padding: 8px;
  }

  .order-form .btn.big {
    width: 100%;
  }

  .lead-inner p,
  .footer p {
    font-size: 16px;
  }

  .work-card-copy strong {
    font-size: 19px;
  }

  .audience-list article,
  .process-steps article,
  .trust-strip article {
    padding: 16px 14px;
  }
}

/* Contacts Page */
.contacts-page .section {
  padding: clamp(36px, 5vw, 36px) 0;
}

.contacts-page .contacts-section {
  padding-top: var(--first-block-gap);
  padding-bottom: var(--first-block-bottom-gap);
}

.contacts-page .contacts-grid {
  display: grid;
  grid-template-columns: minmax(320px, 520px) 1fr;
  gap: 22px;
  align-items: stretch;
}

.contacts-page .contacts-copy {
  background: rgba(13, 19, 34, 0.75);
  border: 1px solid rgba(222, 191, 124, 0.32);
  border-radius: 14px;
  padding: var(--first-panel-padding);
  height: 100%;
}

.contacts-page h1 {
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: var(--first-title-gap);
  color: #f1dfb8;
}

.contacts-page h2 {
  font-size: clamp(30px, 3vw, 42px);
  margin-bottom: 10px;
  color: #eed9ab;
}

.contacts-page .contacts-copy p,
.contacts-page .contacts-copy li {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
  color: #d2d5dd;
}

.contacts-page .contacts-copy p {
  margin: 0 0 14px;
}

.contacts-page .contacts-copy ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.contacts-page .big-phone {
  color: #f0d59a;
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 34px);
}

.contacts-page .map-wrap {
  background: rgba(11, 17, 29, 0.72);
  border: 1px solid rgba(217, 186, 117, 0.32);
  border-radius: 14px;
  overflow: hidden;
  min-height: 620px;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(234, 206, 148, 0.14), 0 18px 42px rgba(2, 7, 14, 0.45);
  height: 100%;
}

.contacts-page .map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
  display: block;
  filter: saturate(0.9) contrast(1.02) brightness(1.03);
}

.contacts-page .map-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 36%, transparent 62%),
    linear-gradient(to right, rgba(5, 10, 20, 0.38) 0, transparent 100px),
    linear-gradient(to left, rgba(5, 10, 20, 0.38) 0, transparent 100px),
    linear-gradient(to bottom, rgba(5, 10, 20, 0.34) 0, transparent 100px),
    linear-gradient(to top, rgba(5, 10, 20, 0.34) 0, transparent 100px);
  z-index: 2;
}

.contacts-page .map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(240, 215, 165, 0.12);
  z-index: 2;
}

.contacts-page .map-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 3;
  padding: 10px 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(14, 20, 34, 0.9), rgba(11, 16, 28, 0.9));
  border: 1px solid rgba(226, 190, 122, 0.45);
  color: #f0dfbc;
  box-shadow: 0 8px 24px rgba(3, 7, 14, 0.4);
}

.contacts-page .map-badge strong {
  display: block;
  font-family: "Oranienbaum", serif;
  font-size: 20px;
  line-height: 1.05;
}

.contacts-page .map-badge span {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: rgba(231, 233, 240, 0.9);
}

.contacts-page .lead-inner h2 {
  font-size: clamp(38px, 3.6vw, 56px);
  margin-bottom: 8px;
}

.contacts-page .lead-inner p {
  margin: 0;
  font-size: 20px;
  color: #d5d8e3;
}

.contacts-page .btn {
  min-height: 46px;
  padding: 10px 24px;
  font-size: 26px;
}

.contacts-page .lead .btn {
  margin-top: 16px;
}

.contacts-page .logo.small img {
  width: 260px;
}

.contacts-page .footer .phone {
  font-size: 20px;
}

@media (max-width: 1020px) {
  .contacts-page .contacts-grid {
    grid-template-columns: 1fr;
  }

  .contacts-page .map-wrap,
  .contacts-page .map-wrap iframe {
    min-height: 460px;
  }
}

@media (max-width: 560px) {
  .contacts-page .contacts-copy {
    padding: 18px 16px;
  }

  .contacts-page .map-wrap,
  .contacts-page .map-wrap iframe {
    min-height: 360px;
  }

  .contacts-page .map-badge {
    left: 10px;
    top: 10px;
    padding: 8px 10px;
  }

  .contacts-page .map-badge strong {
    font-size: 17px;
  }

  .contacts-page .map-badge span {
    font-size: 12px;
  }
}

/* Portfolio Page */
.portfolio-page .portfolio-section {
  padding: var(--first-block-gap) 0 var(--first-block-bottom-gap);
}

.portfolio-page .portfolio-layout {
  display: grid;
  grid-template-columns: 312px 1fr;
  gap: 12px;
  align-items: start;
}

.portfolio-page .glass-panel {
  border-radius: 14px;
  border: 1px solid rgba(220, 185, 116, 0.28);
  background: linear-gradient(180deg, rgba(12, 18, 33, 0.82), rgba(10, 16, 30, 0.85));
}

.portfolio-page .portfolio-sidebar {
  padding: 0;
  overflow: hidden;
}

.portfolio-page .portfolio-sidebar h2 {
  font-size: 46px;
  line-height: 1;
  text-align: left;
  color: #ecd7ad;
  padding: 24px 18px 18px;
  border-bottom: 1px solid rgba(220, 184, 115, 0.25);
}

.portfolio-page .side-group {
  padding: 10px 0;
  border-bottom: 1px solid rgba(216, 182, 116, 0.2);
}

.portfolio-page .side-group.compact {
  border-bottom: 0;
}

.portfolio-page .side-link,
.portfolio-page .side-sub {
  width: 100%;
  border: 0;
  text-align: left;
  font-family: "Oranienbaum", serif;
  background: transparent;
  color: #e9decb;
  cursor: pointer;
  padding: 9px 14px;
  transition: background-color 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.portfolio-page .side-link {
  font-size: 24px;
}

.portfolio-page .side-sub {
  font-size: 24px;
  color: rgba(228, 232, 240, 0.9);
  padding-left: 52px;
}

.portfolio-page .side-ico-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 28px;
  filter: drop-shadow(0 0 5px rgba(195, 147, 72, 0.15));
}

.portfolio-page .side-link:hover,
.portfolio-page .side-sub:hover {
  color: #f0daa5;
  text-shadow: 0 0 12px rgba(229, 192, 123, 0.35);
}

.portfolio-page .side-link.active,
.portfolio-page .side-sub.active {
  color: #f0d89f;
  background: linear-gradient(90deg, rgba(161, 124, 66, 0.26), transparent 80%);
}

.portfolio-page .portfolio-main {
  padding: var(--first-panel-padding);
}

.portfolio-page h1 {
  font-size: clamp(50px, 3.9vw, 80px);
  margin-bottom: var(--first-title-gap);
  color: #f0d8a5;
}

.portfolio-page .portfolio-description {
  margin: 0 0 14px;
  font-size: var(--first-subtext-size);
  line-height: var(--first-subtext-line);
  color: var(--first-subtext-color);
}

.portfolio-page .portfolio-viewer {
  border: 1px solid rgba(223, 187, 119, 0.28);
  border-radius: 10px;
  overflow: hidden;
}

.portfolio-page .portfolio-viewer img {
  width: 100%;
  aspect-ratio: 4 / 6;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 0.16s ease;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: opacity;
}

.portfolio-page .portfolio-viewer img.is-fading {
  opacity: 0.72;
}

.portfolio-page .portfolio-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  gap: 8px;
  align-items: stretch;
  --thumb-row: 126px;
  --thumb-gap: 6px;
}

.portfolio-page .portfolio-thumbs-wrap {
  display: grid;
  grid-template-rows: 38px calc(var(--thumb-row) * 5 + var(--thumb-gap) * 4) 38px;
  gap: 8px;
  align-items: center;
  align-self: start;
  height: auto;
  width: 148px;
  min-width: 148px;
  max-width: 148px;
  overflow: visible;
}

.portfolio-page .thumb-nav {
  border: 1px solid rgba(216, 183, 117, 0.42);
  background: rgba(15, 21, 38, 0.86);
  color: #f0d9a3;
  min-height: 38px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 3;
}

.portfolio-page .thumb-nav img {
  width: 22px;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 0 6px rgba(200, 154, 79, 0.28));
}

.portfolio-page .thumb-nav.prev img {
  transform: rotate(90deg);
}

.portfolio-page .thumb-nav.next img {
  transform: rotate(90deg);
}

.portfolio-page .portfolio-thumbs {
  display: grid;
  grid-auto-flow: row;
  grid-auto-rows: var(--thumb-row);
  gap: 6px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  padding: 2px 2px 2px 0;
  max-height: calc(var(--thumb-row) * 5 + var(--thumb-gap) * 4);
  width: 100%;
  overscroll-behavior: contain;
  position: relative;
  z-index: 1;
}

.portfolio-page .thumb {
  border: 1px solid rgba(223, 188, 120, 0.32);
  border-radius: 8px;
  background: rgba(11, 17, 30, 0.8);
  color: #e8ebf2;
  cursor: pointer;
  padding: 4px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
  overflow: hidden;
  contain: paint;
}

.portfolio-page .thumb.is-active {
  border-color: rgba(239, 203, 138, 0.92);
  box-shadow: 0 0 0 1px rgba(239, 203, 138, 0.24);
  position: relative;
  z-index: 2;
}

.portfolio-page .thumb img {
  width: 100%;
  height: 84px;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  display: block;
  transition: transform 0.2s ease, filter 0.2s ease;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.portfolio-page .thumb span {
  display: block;
  text-align: center;
  font-size: 15px;
  line-height: 1.15;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio-page .portfolio-features {
  margin-top: 12px;
  border-top: 1px solid rgba(216, 183, 118, 0.22);
  padding-top: 12px;
}

.portfolio-page .portfolio-features h3 {
  font-family: "Oranienbaum", serif;
  font-size: 54px;
  text-align: center;
  color: #f0d7a3;
  margin-bottom: 8px;
}

.portfolio-page .portfolio-features ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.portfolio-page .portfolio-features li {
  border: 1px solid rgba(214, 183, 118, 0.3);
  border-radius: 10px;
  background: rgba(11, 17, 30, 0.6);
  padding: 9px 10px;
  font-size: 16px;
  text-align: left;
  color: #e3e7ef;
  display: flex;
  align-items: center;
  gap: 7px;
}

.portfolio-page .feat-ico-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex: 0 0 28px;
  filter: drop-shadow(0 0 5px rgba(187, 139, 64, 0.18));
}

.portfolio-page .portfolio-action {
  text-align: center;
  margin-top: 14px;
  border-top: 1px solid rgba(216, 183, 118, 0.22);
  padding-top: 14px;
}

.portfolio-page #portfolioMainImage {
  cursor: zoom-in;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 6, 12, 0.88);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox__inner {
  position: relative;
  width: min(92vw, 1320px);
  max-height: 90vh;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 12px;
}

.gallery-lightbox__img-wrap {
  border-radius: 12px;
  border: 1px solid rgba(233, 198, 129, 0.42);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  background: rgba(9, 14, 27, 0.84);
}

.gallery-lightbox__img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.24s ease, transform 0.24s ease;
  backface-visibility: hidden;
  will-change: opacity, transform;
}

.gallery-lightbox__img.is-fading {
  opacity: 0.78;
  transform: scale(0.994);
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  border: 1px solid rgba(230, 197, 130, 0.55);
  background: rgba(14, 20, 35, 0.9);
  color: #f0d8a5;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox__close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 42px;
  height: 42px;
  font-size: 28px;
  line-height: 1;
}

.gallery-lightbox__nav {
  width: 56px;
  height: 56px;
  font-size: 32px;
  line-height: 1;
}

.portfolio-page .lead .btn {
  margin-top: 16px;
}

@keyframes logoGoldSweep {
  0% {
    background-position: -260% 0;
    opacity: 0;
  }

  12% {
    opacity: 0;
  }

  20% {
    opacity: 0.42;
  }

  44% {
    background-position: 220% 0;
    opacity: 0;
  }

  100% {
    background-position: 220% 0;
    opacity: 0;
  }
}

@media (max-width: 1180px) {
  .portfolio-page .portfolio-layout {
    grid-template-columns: 240px 1fr;
  }

  .portfolio-page .portfolio-sidebar h2 {
    font-size: 46px;
  }

  .portfolio-page .side-link {
    font-size: 32px;
  }

  .portfolio-page .side-sub {
    font-size: 28px;
  }
}

@media (max-width: 980px) {
  .portfolio-page .portfolio-layout {
    grid-template-columns: 1fr;
  }

  .portfolio-page .portfolio-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .portfolio-page .portfolio-viewer img {
    aspect-ratio: 4 / 3;
  }

  .portfolio-page .portfolio-sidebar h2 {
    padding-bottom: 14px;
  }

  .portfolio-page .side-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 10px 10px;
  }

  .portfolio-page .side-link,
  .portfolio-page .side-sub {
    border: 1px solid rgba(217, 184, 117, 0.24);
    border-radius: 8px;
    padding: 10px 12px;
  }

  .portfolio-page .side-sub {
    padding-left: 12px;
  }

  .portfolio-page .portfolio-features ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-page .portfolio-thumbs-wrap {
    grid-template-rows: none;
    grid-template-columns: 50px minmax(0, 1fr) 50px;
    gap: 10px;
    width: 100%;
    min-width: 0;
    max-width: none;
    overflow: hidden;
  }

  .portfolio-page .portfolio-thumbs {
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 10px) / 2);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 2px 4px;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 2px;
    scrollbar-width: none;
  }

  .portfolio-page .thumb-nav {
    min-height: 96px;
  }

  .portfolio-page .thumb {
    scroll-snap-align: start;
  }

  .portfolio-page .portfolio-thumbs::-webkit-scrollbar {
    display: none;
  }

  .portfolio-page .thumb-nav.prev img,
  .portfolio-page .thumb-nav.next img {
    transform: none;
  }
}

@media (max-width: 560px) {
  .portfolio-page .portfolio-main {
    padding: 12px;
  }

  .portfolio-page .portfolio-sidebar h2 {
    font-size: 32px;
    padding: 18px 14px 14px;
  }

  .portfolio-page .side-group {
    gap: 6px;
    padding: 10px 8px;
  }

  .portfolio-page .side-link,
  .portfolio-page .side-sub {
    min-width: 0;
    padding: 9px 10px;
    gap: 8px;
    font-size: 20px;
    line-height: 1.12;
  }

  .portfolio-page .side-sub {
    padding-left: 10px;
  }

  .portfolio-page .side-ico-img {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .portfolio-page .portfolio-thumbs {
    grid-auto-columns: calc((100% - 8px) / 2);
  }

  .portfolio-page .thumb img {
    height: 72px;
  }

  .portfolio-page .thumb span {
    font-size: 14px;
  }

  .portfolio-page .thumb-nav {
    min-height: 90px;
    font-size: 24px;
  }

  .portfolio-page .portfolio-features h3 {
    font-size: 42px;
  }

  .portfolio-page .portfolio-features ul {
    grid-template-columns: 1fr;
  }
}

.privacy-page .privacy-section {
  padding: var(--first-block-gap) 0 var(--first-block-bottom-gap);
}

.privacy-page .privacy-card {
  border-radius: 14px;
  border: 1px solid rgba(220, 184, 115, 0.28);
  background: linear-gradient(180deg, rgba(12, 18, 33, 0.84), rgba(10, 16, 30, 0.88));
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 18px 42px rgba(2, 7, 14, 0.35);
}

.privacy-page h1 {
  font-size: clamp(40px, 4.5vw, 64px);
  color: #f0d8a5;
  margin-bottom: 14px;
}

.privacy-page h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  color: #ecd7aa;
  margin: 28px 0 10px;
}

.privacy-page p,
.privacy-page li {
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.6;
  color: #d8dde6;
}

.privacy-page ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.privacy-page .privacy-meta {
  color: #bfc6d3;
  font-size: 15px;
}

@media (hover: hover) and (pointer: fine) {
  .portfolio-page .thumb:hover {
    border-color: rgba(240, 205, 140, 0.94);
    box-shadow:
      0 0 0 1px rgba(240, 205, 140, 0.26),
      0 8px 18px rgba(6, 10, 18, 0.5);
    transform: translateY(-2px);
    background: rgba(13, 20, 35, 0.92);
  }

  .portfolio-page .thumb:hover img {
    transform: scale(1.03);
    filter: saturate(1.04) contrast(1.02);
  }
}

/* Reviews page */
.reviews-page .reviews-hero {
  padding-top: var(--first-block-gap);
  padding-bottom: var(--first-block-bottom-gap);
}

.reviews-page .reviews-hero-inner {
  padding: var(--first-panel-padding);
  border-radius: 16px;
  border: 1px solid rgba(217, 184, 117, 0.32);
  background: linear-gradient(180deg, rgba(12, 18, 33, 0.74), rgba(9, 14, 27, 0.72));
}

.reviews-page .reviews-hero h1 {
  font-size: clamp(46px, 5.2vw, 86px);
  color: #ecd3a0;
  margin-bottom: var(--first-title-gap);
}

.reviews-page .reviews-hero p {
  margin: 0;
  color: var(--first-subtext-color);
  font-size: var(--first-subtext-size);
  line-height: var(--first-subtext-line);
}

.reviews-rating-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.reviews-stars {
  font-size: clamp(27px, 2.3vw, 38px);
  color: #f2cd73;
  letter-spacing: 1px;
}

.reviews-stars strong {
  color: #f2e3c4;
  margin-left: 8px;
  letter-spacing: 0;
}

.reviews-page .reviews-note {
  margin-top: 10px;
  color: rgba(205, 211, 222, 0.86);
  font-size: clamp(14px, 1.2vw, 18px);
}

.reviews-page .reviews-list-section {
  padding-top: 0;
}

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

.review-card {
  border: 1px solid rgba(216, 184, 119, 0.45);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(11, 17, 31, 0.84), rgba(9, 14, 27, 0.78));
  box-shadow: 0 14px 32px rgba(4, 8, 16, 0.45);
}

.review-card header {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(225, 191, 124, 0.62);
  background: radial-gradient(circle at 30% 24%, rgba(245, 217, 156, 0.34), rgba(77, 55, 24, 0.5));
  color: #f0d8a6;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
}

.review-card h3 {
  margin: 0;
  color: #f0d7a5;
  font-family: "Oranienbaum", serif;
  font-size: clamp(30px, 2vw, 38px);
  line-height: 1.05;
}

.review-card header p {
  margin: 4px 0 0;
  color: rgba(218, 222, 231, 0.8);
  font-size: clamp(14px, 1vw, 18px);
}

.review-card .review-stars {
  font-size: clamp(25px, 1.8vw, 33px);
  margin-bottom: 6px;
}

.review-card > p {
  margin: 0;
  color: #eceff5;
  font-size: clamp(21px, 1.45vw, 28px);
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-page .reviews-hero-inner {
    padding: 14px;
  }

  .reviews-rating-row {
    align-items: flex-start;
  }
}

/* Reviews fine-tuning */
.reviews-stars-icons {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-right: 8px;
}

.reviews-stars-icons img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(182, 131, 60, 0.28));
}

.review-card {
  position: relative;
}

.review-card::before,
.review-card::after {
  background:
    linear-gradient(#d8b36c, #d8b36c) left bottom / 18px 1px no-repeat,
    linear-gradient(#d8b36c, #d8b36c) left bottom / 1px 18px no-repeat,
    linear-gradient(#d8b36c, #d8b36c) right bottom / 18px 1px no-repeat,
    linear-gradient(#d8b36c, #d8b36c) right bottom / 1px 18px no-repeat;
  opacity: 0.9;
}

.review-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(225, 191, 124, 0.72);
  object-fit: cover;
  object-position: center;
}

.review-card .review-stars-icons {
  margin: 2px 0 8px;
}

.review-card .review-stars-icons img {
  width: 22px;
  height: 22px;
}

.review-card > p {
  font-size: 18px;
  line-height: 1.45;
}

.review-social {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(216, 183, 118, 0.25);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #e8c985;
  font-size: 24px;
}

.review-social span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.review-social img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(192, 146, 71, 0.28));
}

/* Services page */
.services-page .svc-hero {
  padding-top: var(--first-block-gap);
  padding-bottom: var(--first-block-bottom-gap);
}

.services-page .svc-hero-inner {
  position: relative;
  display: block;
  min-height: clamp(540px, 46vw, 720px);
  padding: clamp(20px, 2.2vw, 34px) clamp(20px, 2.2vw, 34px) 0;
  border: 1px solid rgba(217, 184, 117, 0.32);
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 12, 24, 0.96) 0%, rgba(7, 12, 24, 0.92) 32%, rgba(12, 17, 28, 0.56) 56%, rgba(9, 14, 24, 0.18) 72%, rgba(8, 12, 21, 0.04) 100%),
    linear-gradient(180deg, rgba(11, 16, 30, 0.52), rgba(10, 14, 27, 0.38)),
    url("assets/gallery/uslugi/hero_bg.png");
  background-size: cover;
  background-position: center center;
}

.services-page .svc-hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 12, 24, 0.96) 0%, rgba(7, 12, 24, 0.94) 28%, rgba(10, 16, 28, 0.68) 48%, rgba(11, 16, 27, 0.3) 68%, rgba(8, 12, 21, 0.08) 100%),
    linear-gradient(180deg, rgba(11, 16, 30, 0.46), rgba(10, 14, 27, 0.12));
}

.services-page .svc-hero-copy {
  position: relative;
  z-index: 4;
  width: min(50%, 700px);
  min-width: 420px;
  padding-bottom: clamp(20px, 2.2vw, 34px);
}

.services-page .svc-hero-copy h1 {
  font-size: clamp(48px, 5.2vw, 84px);
  color: #ecd4a2;
  margin-bottom: var(--first-title-gap);
}

.services-page .svc-hero-copy p {
  margin: 0 0 10px;
  color: var(--first-subtext-color);
  font-size: var(--first-subtext-size);
  line-height: var(--first-subtext-line);
}

.services-page .svc-lead {
  color: #f0e1bf;
  font-weight: 600;
}

.services-page .svc-hero-copy .btn {
  margin-top: 8px;
}

.services-page .svc-hero-visual {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.services-page .svc-hero-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 225, 162, 0.18), transparent 22.69%),
    radial-gradient(circle at 60% 54%, rgba(247, 204, 118, 0.12), transparent 26%),
    linear-gradient(41deg, rgba(7, 11, 21, 0.04), rgba(8, 12, 22, 0.18));
  --curtain-drift-x: 0px;
  --curtain-drift-y: 0px;
  --curtain-tilt: 0deg;
  --curtain-highlight-shift: 0%;
}

.services-page .svc-hero-bg-image,
.services-page .svc-hero-curtain,
.services-page .svc-hero-form-image {
  position: absolute;
}

.services-page .svc-hero-bg-image,
.services-page .svc-hero-curtain {
  inset: 0;
}

.services-page .svc-hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.72;
  z-index: 1;
  transform:
    translate3d(calc(var(--curtain-drift-x) * 0.2), calc(var(--curtain-drift-y) * 0.12), 0)
    scale(1.04);
  filter: saturate(0.9) brightness(0.92);
  transition: opacity 0.45s ease;
}

.services-page .svc-hero-curtain {
  z-index: 1;
  opacity: 0.92;
  overflow: hidden;
}

.services-page .svc-hero-curtain::before,
.services-page .svc-hero-curtain::after {
  content: "";
  position: absolute;
  inset: -6%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.services-page .svc-hero-curtain::before {
  background:
    linear-gradient(90deg, rgba(7, 10, 19, 0.78) 0%, rgba(8, 11, 21, 0.2) 34%, rgba(8, 11, 21, 0.08) 52%, rgba(39, 23, 14, 0.12) 78%, rgba(52, 30, 16, 0.28) 100%),
    repeating-linear-gradient(
      102deg,
      rgba(255, 231, 178, 0.12) 0 2%,
      rgba(77, 44, 26, 0.03) 2% 8%,
      rgba(17, 16, 24, 0.2) 8% 14%,
      rgba(204, 157, 98, 0.08) 14% 18%,
      rgba(24, 17, 16, 0.18) 18% 24%
    );
  mix-blend-mode: screen;
  opacity: 0.32;
  transform:
    perspective(1400px)
    rotateY(calc(var(--curtain-tilt) * 0.9))
    translate3d(var(--curtain-drift-x), var(--curtain-drift-y), 0)
    scale(1.05);
  animation: services-curtain-sway 13s ease-in-out infinite alternate;
}

.services-page .svc-hero-curtain::after {
  background:
    radial-gradient(circle at calc(81.5% + var(--curtain-highlight-shift)) 24%, rgba(236, 191, 118, 0.26), transparent 12%),
    radial-gradient(circle at calc(74% + var(--curtain-highlight-shift)) 20%, rgba(248, 214, 136, 0.18), transparent 9%),
    radial-gradient(circle at calc(79% + var(--curtain-highlight-shift)) 50%, rgba(186, 134, 77, 0.16), transparent 22%),
    linear-gradient(90deg, rgba(7, 10, 19, 0.18), rgba(8, 10, 20, 0.06) 36%, rgba(48, 29, 17, 0.18) 100%);
  filter: blur(4px);
  opacity: 0.54;
  transform:
    perspective(1200px)
    rotateY(calc(var(--curtain-tilt) * -1.15))
    translate3d(calc(var(--curtain-drift-x) * -0.85), calc(var(--curtain-drift-y) * -0.55), 0)
    scale(1.08);
  animation: services-curtain-breathe 9.5s ease-in-out infinite;
}

.services-page .svc-hero-form-image {
  top: auto;
  bottom: 0;
  left: auto;
  right: max(-1.5%, -10px);
  width: min(52%, 780px);
  min-width: 430px;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
  z-index: 2;
}

.services-page .svc-hero-glow,
.services-page .svc-hero-shimmer {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.services-page .svc-hero-glow {
  opacity: 0;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  transform: scale(0.88);
  mix-blend-mode: screen;
}

.services-page .svc-hero-glow--collar {
  top: 24.5%;
  left: 66.6%;
  width: 6.8%;
  height: 10%;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 241, 190, 0.8), rgba(244, 205, 110, 0.34) 38%, rgba(244, 205, 110, 0.12) 58%, transparent 75%);
  filter: blur(10px);
}

.services-page .svc-hero-glow--epaulette {
  top: 23.3%;
  left: 74.5%;
  width: 9.2%;
  height: 8.6%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 233, 170, 0.66), rgba(240, 198, 92, 0.28) 42%, rgba(240, 198, 92, 0.08) 64%, transparent 78%);
  filter: blur(12px);
}

.services-page .svc-hero-shimmer {
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.45s ease;
  mix-blend-mode: screen;
}

.services-page .svc-hero-shimmer::before {
  content: "";
  position: absolute;
  inset: -25%;
  background: linear-gradient(115deg, transparent 36%, rgba(255, 243, 197, 0.08) 43%, rgba(255, 226, 135, 0.9) 50%, rgba(255, 242, 201, 0.08) 57%, transparent 64%);
  transform: translateX(-140%) skewX(-18deg);
}

.services-page .svc-hero-shimmer--epaulette {
  top: 22.6%;
  left: 73.6%;
  width: 10%;
  height: 8.9%;
  clip-path: polygon(8% 52%, 26% 27%, 91% 31%, 100% 54%, 72% 74%, 19% 69%);
  border-radius: 30px;
}

.services-page .svc-hero-shimmer--collar {
  top: 23.8%;
  left: 67.8%;
  width: 5.3%;
  height: 8.5%;
  clip-path: polygon(12% 11%, 88% 19%, 72% 88%, 32% 86%);
  border-radius: 18px;
}
.services-page .svc-hero-copy {
  max-width: 94%;
}

.services-page .svc-hero.is-accented .svc-hero-glow {
  opacity: 1;
  transform: scale(1);
}

.services-page .svc-hero.is-accented .svc-hero-shimmer {
  opacity: 1;
}

.services-page .svc-hero.is-accented .svc-hero-shimmer--epaulette::before {
  animation: services-shimmer-pass 1.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.25s 2;
}

.services-page .svc-hero.is-accented .svc-hero-shimmer--collar::before {
  animation: services-shimmer-pass 1.55s cubic-bezier(0.22, 0.61, 0.36, 1) 0.48s 2;
}

@keyframes services-curtain-sway {
  0% {
    transform:
      perspective(1400px)
      rotateY(calc(var(--curtain-tilt) * 0.7 - 1.2deg))
      translate3d(calc(var(--curtain-drift-x) - 8px), calc(var(--curtain-drift-y) - 3px), 0)
      scale(1.045);
  }

  100% {
    transform:
      perspective(1400px)
      rotateY(calc(var(--curtain-tilt) * 0.7 + 1.3deg))
      translate3d(calc(var(--curtain-drift-x) + 12px), calc(var(--curtain-drift-y) + 4px), 0)
      scale(1.07);
  }
}

@keyframes services-curtain-breathe {
  0%,
  100% {
    opacity: 0.48;
    transform:
      perspective(1200px)
      rotateY(calc(var(--curtain-tilt) * -0.9 - 0.8deg))
      translate3d(calc(var(--curtain-drift-x) * -0.68), calc(var(--curtain-drift-y) * -0.4), 0)
      scale(1.05);
  }

  50% {
    opacity: 0.72;
    transform:
      perspective(1200px)
      rotateY(calc(var(--curtain-tilt) * -1.12 + 1deg))
      translate3d(calc(var(--curtain-drift-x) * -0.96), calc(var(--curtain-drift-y) * -0.62), 0)
      scale(1.09);
  }
}

@keyframes services-shimmer-pass {
  0% {
    transform: translateX(-140%) skewX(-18deg);
  }

  100% {
    transform: translateX(155%) skewX(-18deg);
  }
}

.services-page .svc-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 14px;
  font-size: clamp(44px, 4.3vw, 66px);
  color: #e8cd96;
}

.services-page .svc-title::before,
.services-page .svc-title::after {
  content: "";
  height: 1px;
  flex: 1 1 auto;
  max-width: 230px;
  background: linear-gradient(90deg, transparent, rgba(218, 184, 116, 0.78), transparent);
}

.services-page .svc-cards {
  display: grid;
  gap: 14px;
}

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

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

.services-page .svc-card {
  position: relative;
  border: 1px solid rgba(216, 184, 119, 0.46);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(10, 15, 28, 0.86), rgba(8, 13, 24, 0.82));
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(2, 6, 15, 0.44);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.services-page .svc-card::before,
.services-page .svc-card::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  pointer-events: none;
  opacity: 0.94;
  background-repeat: no-repeat;
  background-size: contain;
}

.services-page .svc-card::before {
  top: 8px;
  left: 8px;
  background-image: url("assets/ui/ornaments/corner-top-left.svg");
}

.services-page .svc-card::after {
  right: 8px;
  bottom: 8px;
  background-image: url("assets/ui/ornaments/corner-bottom-right.svg");
}

.services-page .svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(228, 197, 129, 0.8);
  box-shadow: 0 20px 42px rgba(4, 8, 17, 0.58);
}

.services-page .svc-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.services-page .svc-card h3 {
  margin: 10px 12px 6px;
  color: #f1d8a7;
  font-family: "Oranienbaum", serif;
  font-size: clamp(30px, 2vw, 40px);
  line-height: 1.08;
}

.services-page .svc-card p {
  margin: 0 12px 8px;
  color: #e7eaf1;
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.38;
}

.services-page .svc-card ul {
  margin: 0 12px 12px 24px;
  padding: 0;
  color: #dfc28a;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.42;
}

.services-page .svc-embroidery {
  border-radius: 14px;
  border: 1px solid rgba(214, 183, 117, 0.32);
  padding: clamp(14px, 2vw, 26px);
  background: linear-gradient(180deg, rgba(9, 14, 25, 0.9), rgba(7, 11, 22, 0.9));
}

.services-page .svc-embroidery h2 {
  color: #e8cc95;
  font-size: clamp(42px, 4vw, 62px);
  margin-bottom: 8px;
}

.services-page .svc-embroidery p,
.services-page .svc-embroidery li {
  font-size: clamp(18px, 1.3vw, 24px);
  color: rgba(236, 240, 247, 0.93);
  line-height: 1.45;
}

.services-page .svc-embroidery ul {
  margin: 0 0 10px 22px;
  padding: 0;
}

.alt-service-rail {
  padding-top: 0;
}

.alt-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.alt-rail article {
  padding: 22px 20px;
  border-radius: 14px;
  border: 1px solid rgba(214, 186, 122, 0.28);
  background: rgba(14, 20, 35, 0.9);
}

.alt-rail strong {
  display: block;
  color: #f0d7a1;
  font-family: "Oranienbaum", serif;
  font-size: clamp(24px, 2vw, 32px);
}

.alt-rail span {
  display: block;
  margin-top: 8px;
  color: rgba(227, 231, 239, 0.82);
  line-height: 1.5;
}

.services-page .svc-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.services-page .svc-steps article {
  position: relative;
  border: 1px solid rgba(216, 184, 118, 0.46);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(13, 19, 34, 0.9), rgba(9, 14, 27, 0.86));
  padding: 10px;
  text-align: center;
  overflow: hidden;
}

.services-page .svc-steps article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 42%, rgba(239, 207, 140, 0.1) 50%, transparent 58%);
  transform: translateX(-135%);
  transition: transform 0.8s ease;
}

.services-page .svc-steps article:hover::after {
  transform: translateX(135%);
}

.services-page .svc-steps span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(227, 196, 131, 0.8);
  color: #f0d9ab;
  font-family: "Oranienbaum", serif;
  font-size: 36px;
  margin-bottom: 6px;
}

.services-page .svc-steps h3 {
  font-size: clamp(28px, 1.75vw, 36px);
  color: #eed6a3;
  margin-bottom: 4px;
}

.services-page .svc-steps p {
  margin: 0;
  font-size: clamp(15px, 0.95vw, 17px);
  line-height: 1.35;
  color: #eceff6;
}

.services-page .svc-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
  border: 1px solid rgba(216, 184, 117, 0.34);
  border-radius: 14px;
  padding: clamp(12px, 2vw, 22px);
  background: linear-gradient(180deg, rgba(11, 16, 29, 0.78), rgba(8, 13, 25, 0.72));
}

.services-page .svc-why h2 {
  font-size: clamp(44px, 4vw, 64px);
  color: #e9ce98;
  margin-bottom: 10px;
}

.services-page .svc-why ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.services-page .svc-why li {
  font-size: clamp(18px, 1.3vw, 24px);
  line-height: 1.38;
  color: #f0f2f7;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.services-page .svc-why li::before {
  content: "✔";
  color: #e0bd78;
  font-weight: 700;
  transform: translateY(1px);
}

.services-page .svc-why img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(219, 186, 118, 0.34);
}

@media (max-width: 1120px) {
  .services-page .svc-cards.six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .services-page .svc-why {
    grid-template-columns: 1fr;
  }

  .services-page .svc-cards.three,
  .services-page .svc-cards.six,
  .services-page .svc-steps,
  .alt-rail {
    grid-template-columns: 1fr;
  }

  .services-page .svc-hero-visual {
    min-height: 260px;
  }

  .services-page .svc-title {
    gap: 10px;
  }

  .services-page .svc-hero-inner {
    min-height: unset;
    padding: 18px 18px 0;
    background: linear-gradient(180deg, rgba(7, 12, 24, 0.92) 0%, rgba(7, 12, 24, 0.74) 48%, rgba(8, 12, 21, 0.28) 100%);
  }

  .services-page .svc-hero-inner::before {
    background:
      linear-gradient(180deg, rgba(7, 12, 24, 0.9) 0%, rgba(7, 12, 24, 0.68) 38%, rgba(8, 12, 21, 0.16) 100%),
      linear-gradient(90deg, rgba(7, 12, 24, 0.5), rgba(7, 12, 24, 0.05));
  }

  .services-page .svc-hero-copy {
    width: auto;
    min-width: 0;
    max-width: none;
    padding-bottom: 18px;
  }

  .services-page .svc-hero-visual {
    position: relative;
    inset: auto;
    min-height: 260px;
    z-index: 3;
  }

  .services-page .svc-hero-stage {
    inset: auto 18px 0 18px;
    top: auto;
    bottom: 0;
    height: 260px;
    border-radius: 0;
  }

  .services-page .svc-hero-form-image {
    right: -6%;
    width: 93%;
    min-width: 0;
    object-position: center top;
  }

  .services-page .svc-hero-bg-image {
    object-position: 58% 50%;
    opacity: 0.74;
  }

  .services-page .svc-hero-curtain::before {
    opacity: 0.27;
  }

  .services-page .svc-hero-curtain::after {
    opacity: 0.48;
  }

  .services-page .svc-hero-glow--collar {
    top: 65%;
    left: 74%;
    width: 10.5%;
    height: 12%;
  }

  .services-page .svc-hero-glow--epaulette {
    top: 62.3%;
    left: 80.3%;
    width: 13.5%;
    height: 9.5%;
  }

  .services-page .svc-hero-shimmer--epaulette {
    top: 61.5%;
    left: 79.1%;
    width: 14.2%;
    height: 10%;
  }

  .services-page .svc-hero-shimmer--collar {
    top: 64.4%;
    left: 75.3%;
    width: 7.8%;
    height: 10.4%;
  }
}
