@font-face {
  font-family: "Safaryan Serif";
  src: url("../fonts/playfair-display-cyrillic.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Safaryan Sans";
  src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f7f4ee;
  --bg-2: #f0ebe4;
  --ink: #2d2b29;
  --soft: #5b5750;
  --muted: #8a8178;
  --line: rgba(45, 43, 41, 0.17);
  --line-strong: rgba(45, 43, 41, 0.45);
  --gold: #b18b5e;
  --gold-dark: #956f45;
  --white: #fffdf9;
  --container: min(1240px, calc(100vw - 88px));
  --serif: "Safaryan Serif", Georgia, "Times New Roman", serif;
  --sans: "Safaryan Sans", Manrope, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site {
  overflow: clip;
}

.header {
  padding-top: 34px;
  background: rgba(247,244,238,.72);
}

.header-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 44px;
  color: #4e4b46;
  font-size: 13px;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 34px;
}

.top-right {
  justify-content: flex-end;
}

.contact-link,
.place,
.footer-contact,
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.contact-stack,
.footer-contact-stack {
  align-items: flex-start;
}

.header-top .phone-stack {
  align-items: center;
}

.contact-lines,
.detail-lines {
  display: grid;
  gap: 2px;
  line-height: 1.35;
}

.contact-lines a,
.detail-lines a,
.footer-contact a {
  color: inherit;
}

.work-hours {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header-hours {
  letter-spacing: .08em;
}

.icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.45;
  fill: none;
}

.lang {
  position: relative;
}

.lang-button {
  width: 74px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: rgba(255,253,249,.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: .06em;
}

.lang-button svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  width: 158px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(255,253,249,.98);
  box-shadow: 0 24px 70px rgba(40,34,27,.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease;
}

.lang.open .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer-bottom .lang-menu {
  top: auto;
  bottom: calc(100% + 8px);
  transform: translateY(6px);
}

.footer-bottom .lang.open .lang-menu {
  transform: translateY(0);
}

.lang-menu button {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px 11px;
  text-align: left;
  display: flex;
  justify-content: space-between;
}

.lang-menu button:hover {
  background: var(--bg-2);
}

.nav {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  align-items: start;
  min-height: 136px;
  margin-top: 14px;
  padding-top: 28px;
}

.nav::before,
.nav::after {
  content: "";
  position: absolute;
  top: 0;
  width: calc((100% - 330px) / 2);
  height: 1px;
  background: var(--line-strong);
}

.nav::before {
  left: 0;
}

.nav::after {
  right: 0;
}

.nav-group {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link,
.footer-nav a,
.tiny-link,
.arrow-link {
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav-link {
  display: inline-flex;
  padding: 12px 0;
}

.brand {
  position: relative;
  top: -62px;
  display: grid;
  justify-items: center;
  width: 240px;
  margin: 0 auto;
}

.brand img {
  width: 142px;
  height: auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: rgba(255,253,249,.58);
  cursor: pointer;
  place-items: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.mobile-menu {
  display: none;
}

.kicker {
  margin: 0 0 36px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--gold-dark);
  font-size: 12px;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 78px;
  height: 1px;
  background: var(--gold);
}

.title-xl,
.title-lg {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.title-xl {
  font-size: clamp(54px, 4.85vw, 72px);
  line-height: 1.1;
}

.title-xl span {
  display: block;
}

.title-lg {
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.13;
}

.lead {
  max-width: 560px;
  margin: 0;
  color: #44413c;
  font-size: 16px;
  line-height: 1.85;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.btn,
.arrow-link {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(255,253,249,.3);
  padding: 0 34px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.btn-dark {
  border-color: #252423;
  background: linear-gradient(135deg, #1f1f1f, #35322f);
  color: #fffdf9;
  box-shadow: 0 22px 58px rgba(32,29,27,.15);
}

.arrow-link {
  border: 0;
  padding: 0;
  min-height: auto;
  background: transparent;
}

.arrow {
  width: 44px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
}

.hero {
  position: relative;
  min-height: 1060px;
  padding-top: 12px;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 86px;
  align-items: start;
}

.hero-copy {
  padding-top: 16px;
}

.hero-copy .lead {
  margin-top: 30px;
}

.micro {
  margin: 22px 0 34px;
  color: var(--gold-dark);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.owner {
  position: relative;
  margin-top: 10px;
  padding: 24px 0 0 24px;
}

.owner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 640px;
  border: 1px solid rgba(45,43,41,.78);
}

.owner-card {
  position: relative;
  z-index: 1;
  min-height: 640px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,.035), transparent 16%, transparent 84%, rgba(0,0,0,.025)),
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(216,211,204,.28)),
    #e9e5de;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55);
  overflow: hidden;
}

.owner-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.62));
  pointer-events: none;
}

.owner-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}

.owner-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  gap: 7px;
}

.owner-caption strong {
  color: #fff7ea;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.owner-caption span {
  color: rgba(255,247,234,.72);
  font-size: 11px;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.owner-card-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  color: #aaa39a;
  font-size: 13px;
  letter-spacing: .19em;
  text-align: center;
  text-transform: uppercase;
}

.owner-card-inner svg {
  width: 62px;
  height: 62px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1;
}

.owner-bio {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 18px 22px;
  border-left: 1px solid var(--gold);
  background: rgba(255, 247, 234, .035);
  color: var(--soft);
  font-size: 14px;
  line-height: 1.55;
}

.owner-bio p {
  margin: 0;
}

.owner-label {
  position: absolute;
  right: -58px;
  bottom: 68px;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 18px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.owner-label::after {
  content: "";
  width: 1px;
  height: 66px;
  background: var(--gold);
}

.hero-decor {
  display: none;
  position: absolute;
  pointer-events: none;
  overflow: hidden;
}

.hero-decor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 31% 54%;
}

.stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(241,236,228,.92);
  border-top: 1px solid rgba(45,43,41,.06);
  border-bottom: 1px solid rgba(45,43,41,.06);
}

.stats-inner {
  width: var(--container);
  min-height: 180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.stat {
  min-height: 98px;
  padding: 0 64px;
  border-left: 1px solid var(--line);
}

.stat:first-child {
  border-left: 0;
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 16px;
}

.stat span {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.stat span::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  margin-top: 18px;
  background: var(--gold);
}

.about {
  padding: 92px 0 84px;
  border-top: 1px solid rgba(45,43,41,.08);
}

.about-grid {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 92px;
  align-items: center;
}

.about-photo {
  height: 510px;
  overflow: hidden;
  border-top-right-radius: 100% 72%;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% 52%;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 38px 0 34px;
}

.feature {
  min-height: 96px;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.feature:last-child {
  border-right: 0;
}

.feature .small-icon {
  margin-bottom: 16px;
}

.feature p {
  margin: 0;
  color: #4d4943;
  font-size: 13px;
  line-height: 1.55;
}

.small-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.small-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
}

.section {
  padding: 60px 0 72px;
  border-top: 1px solid rgba(45,43,41,.11);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

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

.services-carousel {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.services-carousel::-webkit-scrollbar {
  display: none;
}

.service-card {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  background: #eee8df;
}

.services-carousel .service-card {
  flex: 0 0 calc((100% - 52px) / 3);
  scroll-snap-align: start;
}

.service-card::before {
  display: none;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(30, 27, 24, .2);
  pointer-events: none;
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  opacity: 1;
}

.service-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 50px 36px 34px;
  display: grid;
  align-content: start;
}

.service-card:nth-child(1) img {
  object-position: 44% 50%;
}

.service-card:nth-child(2) img {
  object-position: 54% 54%;
}

.service-card:nth-child(3) img {
  object-position: 60% 48%;
}

.service-card:nth-child(4) img {
  object-position: 54% 54%;
}

.service-card:nth-child(5) img {
  object-position: 52% 52%;
}

.service-card:nth-child(6) img {
  object-position: 48% 52%;
}

.num {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  text-shadow: none;
}

.service-card h3 {
  margin: 0 0 24px;
  color: #fffdf9;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .17em;
  text-transform: uppercase;
  text-shadow: none;
}

.service-card p {
  max-width: 210px;
  margin: 0;
  color: #fffdf9;
  font-size: 13px;
  line-height: 1.65;
  text-shadow: none;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.carousel-arrow {
  width: 62px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.carousel-arrow:disabled {
  opacity: .35;
  cursor: default;
}

.carousel-arrow .arrow {
  width: 44px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.3;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(177,139,94,.55);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--gold);
  border-color: var(--gold);
}

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

.portfolio-carousel {
  display: flex;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.portfolio-carousel::-webkit-scrollbar {
  display: none;
}

.portfolio-carousel .project {
  flex: 0 0 calc((100% - 20px) / 3);
  scroll-snap-align: start;
}

.project {
  min-height: 286px;
  position: relative;
  overflow: hidden;
  background: #eee8df;
}

.project img {
  width: 100%;
  height: 100%;
  min-height: 286px;
  object-fit: cover;
}

.project span {
  position: absolute;
  left: 26px;
  bottom: 22px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

.slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  color: var(--gold-dark);
}

.dots {
  display: flex;
  gap: 22px;
}

.dots span {
  width: 48px;
  height: 1px;
  background: rgba(177,139,94,.26);
}

.dots span:first-child {
  height: 2px;
  background: var(--gold);
}

.process {
  padding-bottom: 68px;
}

.process-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  border-top: 1px solid var(--line);
}

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

.process-title {
  padding: 38px 30px 0 0;
}

.process-title .title-lg {
  font-size: clamp(36px, 3.05vw, 46px);
}

.step {
  min-height: 205px;
  min-width: 0;
  padding: 34px 24px;
  border-left: 1px solid var(--line);
}

.step strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  margin: 0 0 15px;
  min-height: 54px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.step p {
  margin: 0;
  color: #5c554d;
  font-size: 13px;
}

.process-note {
  margin-top: 28px;
  min-height: 88px;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 28px;
  background: linear-gradient(120deg, rgba(255,253,249,.58), rgba(237,231,222,.78));
  border: 1px solid rgba(45,43,41,.06);
}

.mark-mini {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  text-align: center;
}

.trust {
  padding: 80px 0 72px;
  border-top: 1px solid rgba(45,43,41,.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: .88fr 1fr;
  gap: 102px;
  align-items: start;
}

.trust-card,
.principles {
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.quote-mark {
  margin-bottom: 28px;
  color: rgba(177,139,94,.24);
  font-family: var(--serif);
  font-size: 72px;
  line-height: .7;
}

.trust blockquote {
  max-width: 430px;
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.32;
}

.author {
  margin-top: 46px;
}

.author::before {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  margin-bottom: 24px;
  background: var(--gold);
}

.author strong,
.principle h3 {
  display: block;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.author span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.principle {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 26px;
  align-items: start;
  margin-bottom: 30px;
}

.principle-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.principle-icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.15;
}

.principle p {
  margin: 0;
  color: #4d4943;
  line-height: 1.5;
}

.cta {
  padding: 72px 0;
  background: rgba(239,233,225,.66);
}

.cta-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 92px;
  align-items: center;
}

.cta-image {
  height: 430px;
  overflow: hidden;
  border-top-left-radius: 120px;
}

.cta-image img,
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta .lead {
  margin: 30px 0 38px;
}

.contact {
  padding: 74px 0 84px;
}

.contact-grid {
  grid-template-columns: 1fr 520px;
}

.contact-actions {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-actions .btn {
  width: 100%;
  min-width: 0;
  padding-inline: 16px;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  color: var(--soft);
}

.contact-detail {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.contact-detail .icon {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  color: var(--gold);
}

.messenger-btn svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.35;
}

.messenger-btn.btn-dark svg {
  stroke: #fffdf9;
}

.contact-image {
  height: 430px;
  overflow: hidden;
  border-radius: 50%;
}

.footer {
  border-top: 1px solid rgba(45,43,41,.08);
  background: rgba(237,231,222,.72);
}

.footer-main {
  min-height: 232px;
  display: grid;
  grid-template-columns: 210px 1px 250px 1px 1fr 1px 170px;
  gap: 34px;
  align-items: center;
  padding: 42px 0;
}

.footer-brand img {
  width: 132px;
  height: auto;
}

.footer-line {
  width: 1px;
  height: 118px;
  background: var(--line);
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 44px;
}

.footer-contacts,
.footer-social {
  display: grid;
  gap: 18px;
  color: #5b5750;
}

.footer-bottom {
  min-height: 68px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 26px;
  color: #777068;
  font-size: 13px;
}

.design-by {
  justify-self: end;
  border-bottom: 1px solid rgba(177,139,94,.55);
}

@media (max-width: 1180px) {
  :root {
    --container: min(100vw - 48px, 1040px);
  }

  .hero-grid {
    grid-template-columns: 1fr 420px;
    gap: 48px;
  }

  .title-xl {
    font-size: clamp(54px, 5vw, 68px);
  }

  .stats-inner {
    width: var(--container);
    margin: 0 auto;
  }

  .stat {
    padding-left: 42px;
    padding-right: 42px;
  }

  .about-grid,
  .cta-grid,
  .contact-grid {
    gap: 54px;
  }

  .process-grid {
    grid-template-columns: 205px minmax(0, 1fr);
  }

  .process-title .title-lg {
    font-size: 40px;
  }

  .step {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-main {
    grid-template-columns: 150px 1px 190px 1px minmax(260px, 1fr) 1px 140px;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .header {
    padding-top: 0;
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247,244,238,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(45,43,41,.08);
  }

  .header-top {
    min-height: 38px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 10px;
  }

  .top-left {
    gap: 0;
  }

  .header-top .phone-stack {
    gap: 8px;
  }

  .header-top .phone-stack .contact-lines a + a {
    display: none;
  }

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

  .top-left .contact-link:nth-child(3),
  .top-right .place {
    display: none;
  }

  .lang-button {
    width: 58px;
    height: 34px;
    font-size: 11px;
  }

  .nav {
    min-height: 58px;
    margin-top: 0;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(45,43,41,.08);
  }

  .nav::before,
  .nav::after,
  .nav-group {
    display: none;
  }

  .brand {
    top: 0;
    width: auto;
    margin: 0;
  }

  .brand img {
    width: 78px;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    display: grid;
    position: fixed;
    left: 17px;
    right: 17px;
    top: 92px;
    z-index: 60;
    margin: 0;
    padding: 12px 14px;
    list-style: none;
    background: rgba(255,253,249,.98);
    border: 1px solid var(--line);
    box-shadow: 0 24px 70px rgba(40,34,27,.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .16s ease, transform .16s ease;
  }

  body.menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    display: block;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(45,43,41,.08);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
  }

  .mobile-menu li:last-child a {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-grid,
  .about-grid,
  .cta-grid,
  .contact-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 0;
  }

  .title-xl {
    font-size: clamp(43px, 13vw, 62px);
    line-height: 1.12;
  }

  .title-xl span {
    display: inline;
  }

  .hero-copy .lead {
    margin-top: 30px;
  }

  .micro {
    margin: 24px 0 30px;
    font-size: 11px;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .owner {
    margin-top: 30px;
    padding: 14px 0 0 14px;
  }

  .owner-card {
    min-height: 360px;
  }

  .owner::before {
    height: 360px;
  }

  .owner-label {
    right: -14px;
    bottom: 30px;
    font-size: 9px;
  }

  .hero-decor {
    display: block;
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    height: 220px;
    margin-top: 30px;
    border-top-right-radius: 132px;
    z-index: 1;
  }

  .stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 0;
  }

  .stats-inner {
    width: var(--container);
    margin: 0 auto;
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 34px 0;
  }

  .stat {
    min-height: auto;
    padding: 0 0 24px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    margin-bottom: 22px;
  }

  .stat:last-child {
    border-bottom: 0;
    margin-bottom: 0;
  }

  .about,
  .section,
  .trust,
  .cta,
  .contact {
    padding: 54px 0;
  }

  .about-photo,
  .cta-image,
  .contact-image {
    height: 360px;
    width: min(100%, 440px);
  }

  .feature-row,
  .cards,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 20px;
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .section-head {
    display: grid;
    gap: 20px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-title {
    padding: 34px 0 24px;
  }

  .process-title .title-lg {
    font-size: clamp(36px, 8vw, 44px);
  }

  .step {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 26px 0;
    min-height: auto;
  }

  .step h3 {
    min-height: 0;
  }

  .process-note {
    grid-template-columns: 1fr;
    padding: 26px;
    align-items: start;
  }

  .cta .button-row {
    gap: 24px;
  }

  .cta .arrow-link {
    justify-self: center;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: center;
    justify-items: center;
    text-align: center;
    padding: 36px 0;
  }

  .footer-line {
    display: none;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 14px;
    padding: 22px 0;
  }

  .design-by {
    justify-self: center;
  }

  .footer-brand img {
    margin: 0 auto;
  }

  .footer-nav {
    justify-items: center;
    gap: 16px 34px;
  }

  .footer-contacts,
  .footer-social {
    justify-items: center;
  }

  .footer-contact,
  .social-link {
    justify-content: center;
    white-space: normal;
  }
}

@media (max-width: 520px) {
  :root {
    --container: calc(100vw - 34px);
  }

  .kicker {
    gap: 12px;
    margin-bottom: 22px;
    font-size: 10.5px;
    line-height: 1.45;
    letter-spacing: .13em;
  }

  .kicker::before {
    width: 48px;
  }

  .title-lg {
    font-size: clamp(34px, 10.5vw, 44px);
  }

  .service-card,
  .service-card img {
    min-height: 310px;
  }

  .project,
  .project img {
    min-height: 238px;
  }
}

/* Dark editorial variant for the copied site. */
:root {
  --bg: #171513;
  --bg-2: #211d19;
  --ink: #eee7dc;
  --soft: #cfc4b3;
  --muted: #a99d8e;
  --line: rgba(238, 226, 208, 0.16);
  --line-strong: rgba(207, 164, 105, 0.58);
  --gold: #d0a36d;
  --gold-dark: #c0925d;
  --white: #fff7ea;
}

body {
  background:
    radial-gradient(circle at 58% 6%, rgba(208, 163, 109, .12), transparent 420px),
    radial-gradient(circle at 8% 30%, rgba(255, 247, 234, .05), transparent 520px),
    var(--bg);
  color: var(--ink);
}

.header {
  background: transparent;
}

.header-top,
.lead,
.feature p,
.step p,
.principle p,
.footer-contacts,
.footer-social,
.footer-bottom {
  color: var(--soft);
}

.nav::before,
.nav::after {
  background: var(--line-strong);
}

.lang-button,
.btn,
.menu-toggle {
  border-color: rgba(238, 226, 208, .38);
  background: rgba(255, 247, 234, .035);
}

.lang-menu,
.mobile-menu {
  border-color: rgba(238, 226, 208, .18);
  background: rgba(27, 24, 21, .98);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .36);
}

.lang-menu button:hover {
  background: rgba(208, 163, 109, .12);
}

.btn-dark {
  border-color: rgba(255, 247, 234, .62);
  background: linear-gradient(135deg, #d1a46e, #8b6237);
  color: #171513;
  box-shadow: 0 24px 68px rgba(0, 0, 0, .3);
}

.messenger-btn.btn-dark svg {
  stroke: #171513;
}

.owner::before {
  border-color: rgba(238, 226, 208, .46);
}

.owner-card {
  background:
    linear-gradient(90deg, rgba(255,255,255,.025), transparent 16%, transparent 84%, rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(255,247,234,.06), rgba(70,56,43,.28)),
    #211d19;
  box-shadow: inset 0 0 0 1px rgba(255,247,234,.08);
}

.owner-card-inner {
  color: rgba(238, 226, 208, .48);
}

.stats,
.cta,
.footer {
  background: rgba(33, 29, 25, .84);
}

.stats {
  border-top-color: rgba(238, 226, 208, .08);
  border-bottom-color: rgba(238, 226, 208, .08);
}

.principle-icon {
  background: rgba(208, 163, 109, .06);
}

.about,
.section,
.trust,
.footer,
.nav,
.mobile-menu a {
  border-color: rgba(238, 226, 208, .12);
}

.about-photo,
.project,
.service-card,
.cta-image,
.contact-image {
  background: #25211d;
}

.about-photo img,
.project img,
.service-card img,
.cta-image img,
.contact-image img,
.hero-decor img {
  filter: saturate(.9) contrast(1.04) brightness(.82);
}

.service-card::after {
  background: rgba(18, 15, 13, .34);
}

.project::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.42));
  pointer-events: none;
}

.project span {
  z-index: 2;
}

.process-note {
  background: linear-gradient(120deg, rgba(255,247,234,.055), rgba(208,163,109,.08));
  border-color: rgba(238, 226, 208, .1);
}

.quote-mark {
  color: rgba(208, 163, 109, .24);
}

.footer-line {
  background: var(--line);
}

.footer-bottom {
  border-top-color: rgba(238, 226, 208, .14);
}

@media (max-width: 900px) {
  .header {
    background: rgba(23, 21, 19, .94);
    border-bottom-color: rgba(238, 226, 208, .1);
    transition: transform .28s ease;
  }

  body.header-hidden:not(.menu-open) .header {
    transform: translateY(-100%);
  }

  .nav {
    border-top-color: rgba(238, 226, 208, .1);
  }

  :root {
    --mobile-edge: 24px;
  }

  .title-xl {
    font-size: clamp(38px, 11.6vw, 54px);
  }

  .owner-card {
    min-height: 330px;
  }

  .owner::before {
    height: 330px;
  }

  .owner-photo {
    object-position: 50% 9%;
  }

  .owner-caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .owner-caption strong {
    font-size: 24px;
  }

  .owner-caption span {
    font-size: 9px;
  }

  .cards,
  .portfolio-grid,
  .process-steps {
    width: calc(100% + (var(--mobile-edge) * 2));
    margin-left: calc(var(--mobile-edge) * -1);
    padding: 0 var(--mobile-edge) 16px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .cards::-webkit-scrollbar,
  .portfolio-grid::-webkit-scrollbar,
  .process-steps::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 min(76vw, 300px);
    min-height: 300px;
    scroll-snap-align: start;
  }

  .services-carousel .service-card {
    flex: 0 0 min(78vw, 300px);
  }

  .service-card img {
    min-height: 300px;
  }

  .service-card-content {
    padding: 34px 22px 26px;
  }

  .num {
    margin-bottom: 24px;
    font-size: 38px;
  }

  .service-card h3 {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: .13em;
  }

  .service-card p {
    max-width: 180px;
    font-size: 12px;
    line-height: 1.55;
  }

  .project {
    flex: 0 0 min(80vw, 320px);
    min-height: 220px;
    scroll-snap-align: start;
  }

  .portfolio-carousel .project {
    flex: 0 0 min(80vw, 320px);
  }

  .project img {
    min-height: 220px;
  }

  .process-grid {
    display: block;
  }

  .process-steps {
    margin-top: 18px;
  }

  .step {
    flex: 0 0 min(72vw, 280px);
    min-height: 190px;
    padding: 22px;
    border: 1px solid var(--line);
    background: rgba(255,247,234,.025);
    scroll-snap-align: start;
  }

  .step + .step {
    border-left: 1px solid var(--line);
  }

  .step h3 {
    min-height: 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 22px 28px;
    align-items: start;
    justify-items: stretch;
    text-align: left;
  }

  .footer-brand {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .footer-brand img {
    width: 112px;
    margin: 0;
  }

  .footer-nav {
    grid-column: 1 / -1;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    justify-items: start;
    gap: 16px 34px;
  }

  .footer-contacts {
    grid-column: 1 / -1;
    justify-items: start;
    gap: 12px;
  }

  .footer-social {
    grid-column: 1 / -1;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: start;
    gap: 12px 20px;
  }

  .footer-contact,
  .social-link {
    justify-content: flex-start;
    white-space: normal;
  }

  .footer-bottom {
    justify-items: start;
    text-align: left;
  }

  .design-by {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  :root {
    --mobile-edge: 17px;
  }

  .service-card {
    flex-basis: 78vw;
    min-height: 282px;
  }

  .services-carousel .service-card {
    flex-basis: 78vw;
  }

  .service-card img {
    min-height: 282px;
  }

  .project {
    flex-basis: 82vw;
  }

  .portfolio-carousel .project {
    flex-basis: 82vw;
  }

  .step {
    flex-basis: 74vw;
  }
}
