@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/onest-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/onest-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-600-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-600-italic-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-600-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #41434f;
  --ink-deep: #30323b;
  --sage: #b8d48f;
  --sage-pale: #dce8c8;
  --coral: #f06455;
  --coral-hover: #f47b6f;
  --forest: #23684d;
  --action-ink: #272932;
  --cream: #f5f2e9;
  --paper: #fffdf8;
  --white: #ffffff;
  --text-muted: #60616a;
  --text-subtle: #7a7b82;
  --line-dark: rgba(65, 67, 79, .22);
  --line-light: rgba(255, 253, 248, .28);
  --preview-height: 0px;
  --header-height: 88px;
  --content-edge: max(clamp(28px, 6vw, 96px), calc((100vw - 1320px) / 2));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--ink-deep);
  font-family: Onest, Arial, sans-serif;
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  color: var(--paper);
  background: var(--forest);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 10;
  color: var(--cream);
  background: var(--ink);
  border-bottom: 1px solid rgba(245, 242, 233, .14);
}
.site-header__inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 12px var(--content-edge);
}
.site-brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-logo {
  width: 66px;
  height: 56px;
  display: block;
  overflow: hidden;
}
.site-logo img {
  width: 166px;
  height: auto;
  max-width: none;
  transform: translate(-50px, -40px);
  filter: brightness(0) invert(88%) sepia(20%) saturate(623%) hue-rotate(38deg) brightness(91%) contrast(85%);
}
.site-wordmark {
  width: 270px;
  height: 56px;
  display: block;
  overflow: hidden;
}
.site-wordmark img {
  width: 357px;
  height: auto;
  max-width: none;
  transform: translate(-44px, -217px);
  filter: brightness(0) invert(88%) sepia(20%) saturate(623%) hue-rotate(38deg) brightness(91%) contrast(85%);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.4vw, 52px);
  color: rgba(245, 242, 233, .86);
  font-size: 14px;
  font-weight: 650;
}
.site-nav a {
  color: inherit;
  text-decoration: none;
}
.site-nav a:hover { color: var(--sage); }
.site-nav a:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}
.site-address {
  justify-self: end;
  color: rgba(245, 242, 233, .72);
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
  text-align: right;
}
.site-address span { display: block; }
.site-address span:first-child { color: var(--sage); font-weight: 700; }

.button:focus-visible,
.dialog-close:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.concept {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: var(--preview-height);
}
.hero-title {
  margin: 0;
  text-wrap: balance;
}
.hero-text {
  max-width: 590px;
  margin: 28px 0 0;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.58;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.hero-benefits {
  max-width: 650px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(245, 242, 233, .18);
}
.hero-benefits li {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 0 12px 28px;
  color: rgba(245, 242, 233, .82);
  border-bottom: 1px solid rgba(245, 242, 233, .18);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}
.hero-benefits li::before {
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  content: "";
  background: var(--sage);
}
.benefit-mobile { display: none; }
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--action-ink); background: var(--coral); }
.button--primary:hover { background: var(--coral-hover); }

/* Concept 01 — Editorial studio */
.concept--editorial { color: var(--cream); background: var(--ink); }
.editorial-layout {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  align-items: stretch;
  padding-right: var(--content-edge);
}
.editorial-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 64px clamp(24px, 3vw, 56px) 40px var(--content-edge);
}
.editorial-copy::before {
  width: 72px;
  height: 8px;
  display: block;
  margin-bottom: 32px;
  content: "";
  background: linear-gradient(110deg, var(--coral) 0%, var(--coral) 43%, rgba(255, 253, 248, .36) 50%, var(--coral) 57%, var(--coral) 100%);
  background-position: 100% 0;
  background-size: 260% 100%;
}
.concept--editorial .hero-title {
  max-width: 820px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(68px, 7.7vw, 124px);
  font-weight: 600;
  line-height: .82;
  letter-spacing: -.055em;
}
.hero-title__first-line { display: block; white-space: nowrap; }
.concept--editorial .hero-title em {
  display: block;
  color: var(--sage);
  font-weight: 600;
}
.concept--editorial .hero-text { color: rgba(245, 242, 233, .82); }
.concept--editorial .button { border-radius: 2px; }
.concept--editorial .button--secondary { color: var(--cream); border-color: var(--line-light); }
.concept--editorial .button--secondary:hover { color: var(--ink); background: var(--sage); border-color: var(--sage); }
.editorial-visual {
  position: relative;
  min-height: 620px;
  margin: 24px 24px 24px 0;
}
.editorial-photo {
  position: absolute;
  z-index: 1;
  inset: 48px 0 48px 0;
  overflow: hidden;
  background: var(--ink-deep);
}
.editorial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(.78) contrast(1.04);
  transition: transform .8s var(--ease), filter .8s var(--ease);
}
.editorial-photo__logo {
  position: absolute;
  z-index: 2;
  top: clamp(16px, 1.4vw, 28px);
  left: 50%;
  width: min(66%, 340px);
  aspect-ratio: 3412 / 3088;
  background:
    url("../images/about-logo-cropped.png") center / contain no-repeat,
    radial-gradient(ellipse at center, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .90) 55%, rgba(255, 253, 248, .58) 88%, rgba(255, 253, 248, .24) 100%);
  transform: translateX(-50%);
  pointer-events: none;
}
.concept--editorial:hover .editorial-photo img { transform: scale(1.018); filter: saturate(.9) contrast(1.03); }
.editorial-sage {
  position: absolute;
  z-index: 0;
  right: -24px;
  bottom: 0;
  width: min(72%, 340px);
  height: 88px;
  background: var(--sage);
}
.editorial-coral {
  position: absolute;
  z-index: 3;
  top: 0;
  left: -28px;
  width: 56px;
  height: 150px;
  background: var(--coral);
}

.services {
  padding: 0;
  color: var(--ink);
  background: var(--cream);
  scroll-margin-top: 24px;
}
.services-head {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding: 64px clamp(28px, 6vw, 96px) 56px;
  color: var(--cream);
  background: var(--ink);
}
.services-head::after {
  position: absolute;
  z-index: 0;
  top: -.42em;
  right: clamp(24px, 3vw, 56px);
  content: "ВЕРА";
  color: rgba(245, 242, 233, .045);
  font-family: Onest, Arial, sans-serif;
  font-size: clamp(160px, 30vw, 470px);
  font-weight: 800;
  line-height: .75;
  letter-spacing: -.1em;
  pointer-events: none;
}
.services-head__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}
.services-head__inner::before {
  width: 72px;
  height: 8px;
  display: block;
  margin-bottom: 24px;
  content: "";
  background: var(--coral);
}
.services h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(72px, 8vw, 112px);
  font-weight: 600;
  line-height: .8;
  letter-spacing: -.055em;
}
.services-body { padding: 0 clamp(28px, 6vw, 96px) 72px; }
.services-list { max-width: 1320px; margin: 0 auto; }
.service-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
  padding: 56px 0;
  border-bottom: 1px solid var(--line-dark);
}
.service-row:nth-child(even) .service-copy { order: 2; }
.service-row:nth-child(even) .service-media { order: 1; justify-self: start; }
.service-copy { max-width: 540px; }
.service-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(46px, 4.4vw, 64px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.service-description {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.55;
}
.service-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 24px 0 0;
  color: var(--forest);
}
.service-price span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-price strong {
  font-family: "Onest", Arial, sans-serif;
  font-size: 36px;
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.025em;
}
.service-price small {
  font-family: "Onest", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}
.service-media {
  position: relative;
  width: min(100%, 420px);
  margin: 0;
  justify-self: end;
  overflow: hidden;
  background: var(--ink);
}
.service-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  transition: transform .8s var(--ease);
}
.service-row:hover .service-media img { transform: scale(1.018); }
.services-note {
  max-width: 1320px;
  margin: 32px auto 0;
  color: var(--text-subtle);
  font-size: 13px;
  line-height: 1.55;
}

.request-cta {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 96px clamp(28px, 6vw, 96px);
  color: var(--cream);
  background: var(--ink);
}
.request-cta__word {
  position: absolute;
  z-index: -1;
  right: clamp(24px, 4vw, 64px);
  bottom: 32px;
  color: rgba(245, 242, 233, .045);
  font-family: Onest, Arial, sans-serif;
  font-size: clamp(150px, 19vw, 280px);
  font-weight: 800;
  line-height: .78;
  letter-spacing: -.1em;
  white-space: nowrap;
  pointer-events: none;
}
.request-cta__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}
.request-cta__inner::before {
  width: 72px;
  height: 8px;
  display: block;
  margin-bottom: 24px;
  content: "";
  background: var(--coral);
}
.request-cta h2 {
  max-width: 880px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(64px, 7.5vw, 104px);
  font-weight: 600;
  line-height: .88;
  letter-spacing: -.05em;
  text-wrap: balance;
}
.request-cta__text {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(245, 242, 233, .8);
  font-size: 18px;
  line-height: 1.55;
}
.request-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.request-cta .button { min-width: 230px; border-radius: 2px; }
.request-cta .button--secondary {
  color: var(--cream);
  background: transparent;
  border-color: var(--line-light);
}
.request-cta .button--secondary:hover {
  color: var(--ink);
  background: var(--sage);
  border-color: var(--sage);
}

.masters {
  padding: 104px clamp(28px, 6vw, 96px) 112px;
  color: var(--ink);
  background: var(--cream);
}
.masters__header {
  max-width: 1320px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  align-items: end;
  gap: 64px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}
.masters__heading::before {
  width: 72px;
  height: 8px;
  display: block;
  margin-bottom: 24px;
  content: "";
  background: var(--coral);
}
.masters h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(72px, 8vw, 112px);
  font-weight: 600;
  line-height: .8;
  letter-spacing: -.055em;
}
.masters__intro {
  max-width: 440px;
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.55;
}
.masters__hint { display: none; }
.masters__grid {
  max-width: 1320px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 48px auto 0;
}
.master-card { min-width: 0; }
.master-card__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink-deep);
}
.master-card__media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56px;
  height: 8px;
  content: "";
  background: var(--sage);
}
.master-card__media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  transition: transform .8s var(--ease);
}
.master-card:hover .master-card__media img { transform: scale(1.018); }
.master-card__info { padding-top: 20px; }
.master-card__role {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.master-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.035em;
}
.master-card__facts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
}
.master-card__facts div { min-width: 0; }
.master-card__facts dt {
  margin: 0 0 6px;
  color: var(--text-subtle);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.master-card__facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}
.master-card__facts div:last-child { min-width: 72px; }
.master-card__facts div:last-child dd { color: var(--forest); }

.works {
  padding: 104px clamp(28px, 6vw, 96px) 112px;
  color: var(--cream);
  background: var(--ink-deep);
}
.works__header,
.contacts__header {
  max-width: 1320px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: 64px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-light);
}
.section-title-wrap::before {
  width: 72px;
  height: 8px;
  display: block;
  margin-bottom: 24px;
  content: "";
  background: var(--coral);
}
.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(72px, 8vw, 112px);
  font-weight: 600;
  line-height: .8;
  letter-spacing: -.055em;
}
.section-side {
  display: grid;
  justify-items: start;
  gap: 24px;
}
.section-intro {
  max-width: 460px;
  margin: 0;
  color: rgba(245, 242, 233, .72);
  font-size: 17px;
  line-height: 1.55;
}
.gallery-controls {
  display: inline-grid;
  grid-template-columns: 48px minmax(64px, auto) 48px;
  align-items: center;
  gap: 8px;
}
.gallery-controls.gallery-controls--arrows {
  grid-template-columns: repeat(2, 48px);
  gap: 16px;
}
.gallery-controls[hidden] { display: none; }
.gallery-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 2px;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: color .25s var(--ease), background .25s var(--ease), opacity .25s var(--ease);
}
.gallery-button:hover:not(:disabled) {
  color: var(--ink);
  background: var(--sage);
}
.gallery-button:disabled {
  opacity: .32;
  cursor: default;
}
.gallery-count {
  min-width: 64px;
  color: inherit;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 750;
  letter-spacing: .06em;
  text-align: center;
}
.works .gallery-controls { color: var(--cream); }
.works__grid {
  max-width: 1320px;
  display: flex;
  gap: 20px;
  margin: 48px auto 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}
.work-card {
  position: relative;
  flex: 0 0 min(420px, calc((100% - 40px) / 3));
  min-width: 0;
  aspect-ratio: 3 / 4;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: zoom-in;
  scroll-snap-align: start;
}
.work-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .8s var(--ease);
}
.work-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 64px;
  height: 8px;
  content: "";
  background: var(--sage);
}
.work-card:hover img { transform: scale(1.018); filter: saturate(1.05); }
.work-card:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: -3px;
}

.works__gallery-controls {
  max-width: 1320px;
  display: grid;
  justify-content: end;
  margin: 16px auto 12px;
}
.works__gallery-controls .gallery-button,
.video-gallery__controls .gallery-button {
  width: 56px;
  height: 56px;
  color: var(--cream);
  background: rgba(65, 67, 79, .94);
  border-color: rgba(245, 242, 233, .8);
}
.works__gallery-controls .gallery-button:hover:not(:disabled),
.video-gallery__controls .gallery-button:hover:not(:disabled) {
  color: var(--ink);
  background: var(--sage);
  border-color: var(--sage);
}
.works__grid { margin-top: 0; }
.work-card { flex-basis: min(390px, calc((100% - 152px) / 3)); }
.works__videos {
  max-width: 1320px;
  margin: 72px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
}
.video-gallery__controls {
  display: grid;
  justify-content: end;
  margin: 0 0 12px;
}
.video-gallery__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}
.video-gallery__track::-webkit-scrollbar { display: none; }
.video-card {
  flex: 0 0 min(300px, calc((100% - 152px) / 3));
  aspect-ratio: 363 / 714;
  overflow: hidden;
  background: #000;
  scroll-snap-align: start;
}
.video-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.reviews {
  padding: 104px clamp(28px, 6vw, 96px);
  color: var(--ink);
  background: var(--cream);
}
.reviews__inner {
  max-width: 1320px;
  margin: 0 auto;
}
.reviews__copy {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.55;
}
.reviews__widget {
  min-height: 200px;
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
review-lab {
  display: block;
  width: 100%;
}
review-lab .widget {
  color: var(--ink);
  font-family: Onest, Arial, sans-serif;
}
review-lab .widget__header {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
}
review-lab .widget__leave-link {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-underline-offset: 4px;
}
review-lab .widget__tab {
  color: var(--text-muted);
  font: 600 16px/1.25 "Cormorant Garamond", Georgia, serif;
}
review-lab .widget__tab_active { color: var(--ink); }
review-lab .widget__tab--rating,
review-lab .review__rating,
review-lab .widget__pag.widget__pag_prev,
review-lab .widget__pag.widget__pag_next { color: var(--forest); }
review-lab .review {
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}
review-lab .review__header {
  align-items: center;
  gap: 12px;
}
review-lab .review__photo { border-radius: 50%; }
review-lab .review__title {
  color: var(--ink);
  font: 600 22px/1.15 "Cormorant Garamond", Georgia, serif;
}
review-lab .review__text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}
review-lab .review__more {
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 3px;
}

.about {
  padding: 104px 0 96px;
  color: var(--ink);
  background: var(--cream);
  border-top: 1px solid var(--line-dark);
}
.about__intro {
  width: calc(100% - 2 * clamp(28px, 6vw, 96px));
  max-width: 1320px;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
  margin: 0 auto;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-dark);
}
.about__brand {
  min-height: 340px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
}
.about__brand img {
  width: min(100%, 430px);
  height: 290px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.about__header-text {
  max-width: 640px;
  margin: 32px 0 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.65;
}
.interior-gallery {
  width: calc(100% - 2 * clamp(28px, 6vw, 96px));
  max-width: 1320px;
  margin: 56px auto 0;
}
.interior-gallery__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.interior-gallery__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.035em;
}
.interior-gallery .gallery-controls { color: var(--ink); }
.interior-gallery .gallery-button:hover:not(:disabled) {
  color: var(--ink);
  background: var(--sage);
}
.interior-gallery__track {
  display: flex;
  gap: 12px;
  padding: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}
.interior-gallery__track::-webkit-scrollbar,
.works__grid::-webkit-scrollbar { display: none; }
.interior-frame {
  height: clamp(230px, 23vw, 320px);
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  background: var(--cream);
  scroll-snap-align: start;
}
.interior-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.interior-frame:hover img { transform: scale(1.018); }

.interior-frame {
  position: relative;
  padding: 0;
  color: var(--cream);
  border: 0;
  cursor: zoom-in;
}
.interior-frame:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: -3px;
}

dialog.lightbox {
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--cream);
  background: rgba(35, 37, 44, .98);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
dialog.lightbox::backdrop { background: rgba(35, 37, 44, .98); }
.lightbox__shell {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  padding: 20px 24px 24px;
}
.lightbox__header {
  min-height: 56px;
  display: grid;
  grid-template-columns: 1fr auto 56px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(245, 242, 233, .18);
}
.lightbox__header.lightbox__header--no-count { grid-template-columns: 1fr 56px; }
.lightbox__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}
.lightbox__count {
  margin: 0;
  color: rgba(245, 242, 233, .76);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 750;
  letter-spacing: .08em;
}
.lightbox__close,
.lightbox__control {
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(245, 242, 233, .48);
  border-radius: 2px;
  font: inherit;
  line-height: 1;
  transition: color .25s var(--ease), background .25s var(--ease), opacity .25s var(--ease);
}
.lightbox__close {
  width: 48px;
  height: 48px;
  justify-self: end;
  font-size: 28px;
}
.lightbox__stage {
  min-height: 0;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 24px;
  padding-top: 20px;
}
.lightbox__control {
  width: 56px;
  height: 56px;
  font-size: 28px;
}
.lightbox__close:hover,
.lightbox__control:hover:not(:disabled) {
  color: var(--ink);
  background: var(--sage);
  border-color: var(--sage);
}
.lightbox__control:disabled {
  opacity: .22;
  cursor: default;
}
.lightbox__figure {
  position: relative;
  min-width: 0;
  height: calc(100svh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  touch-action: pan-y;
}
.lightbox__image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100% - 36px);
  object-fit: contain;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.lightbox__image.is-loaded { opacity: 1; }
.lightbox--works .lightbox__image { max-height: 100%; }
.lightbox__caption {
  min-height: 24px;
  margin: 0;
  color: rgba(245, 242, 233, .66);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}
.lightbox__loading {
  position: absolute;
  inset: 50% auto auto 50%;
  margin: 0;
  color: rgba(245, 242, 233, .7);
  font-size: 13px;
  font-weight: 650;
  transform: translate(-50%, -50%);
}
.lightbox__loading[hidden] { display: none; }
.lightbox__close:focus-visible,
.lightbox__control:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.booking-cta {
  position: relative;
  isolation: isolate;
  min-height: 500px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 88px clamp(28px, 6vw, 96px);
  color: var(--cream);
  background: var(--ink);
}
.booking-cta::after {
  position: absolute;
  z-index: -1;
  right: -48px;
  bottom: -.22em;
  content: "ONLINE";
  color: rgba(245, 242, 233, .055);
  font-size: clamp(130px, 21vw, 300px);
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.1em;
  pointer-events: none;
}
.booking-cta__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}
.booking-cta__eyebrow {
  margin: 0 0 18px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.booking-cta h2 {
  max-width: 900px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(64px, 7.5vw, 104px);
  font-weight: 600;
  line-height: .88;
  letter-spacing: -.05em;
  text-wrap: balance;
}
.booking-cta__text {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(245, 242, 233, .82);
  font-size: 18px;
  line-height: 1.55;
}
.booking-cta .button { min-width: 230px; margin-top: 36px; border-radius: 2px; }

.contacts {
  padding: 104px clamp(28px, 6vw, 96px) 112px;
  color: var(--ink);
  background: var(--cream);
}
.contacts__header { border-bottom-color: var(--line-dark); }
.contacts__intro { color: var(--text-muted); }
.contacts__grid {
  max-width: 1320px;
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 6vw, 88px);
  margin: 48px auto 0;
}
.contact-list { display: grid; align-content: start; margin: 0; }
.contact-list__item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}
.contact-list__item:first-child { padding-top: 0; }
.contact-list dt {
  margin: 0 0 9px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-list dd {
  margin: 0;
  font-family: "Onest", Arial, sans-serif;
  font-size: clamp(28px, 2.4vw, 36px);
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.02em;
}
.contact-list__item--phone dd { white-space: nowrap; }
.contact-list a { color: inherit; text-decoration-color: rgba(65, 67, 79, .35); text-underline-offset: 5px; }
.contact-list a:hover { color: var(--forest); }
.contact-map {
  min-height: 440px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line-dark);
}
.contact-map__body {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: var(--cream);
}
.contact-map__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-map__card {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  max-width: calc(100% - 40px);
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(245, 242, 233, .94);
  border: 1px solid rgba(65, 67, 79, .18);
  box-shadow: 0 10px 28px rgba(32, 33, 42, .18);
}
.contact-map__card strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}
.contact-map__card span { display: block; margin-top: 6px; color: var(--text-muted); font-size: 13px; }
.contact-map__link {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  color: var(--cream);
  background: var(--ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}
.contact-map__link:hover { color: var(--sage); }

.site-footer {
  padding: 40px clamp(28px, 6vw, 96px);
  color: rgba(245, 242, 233, .72);
  background: var(--ink-deep);
  border-top: 1px solid rgba(245, 242, 233, .14);
}
.site-footer__inner {
  max-width: 1320px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin: 0 auto;
}
.site-footer__brand { margin: 0; }
.site-footer__meta { margin: 12px 0 0; font-size: 13px; line-height: 1.6; }
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  font-size: 12px;
  text-align: right;
}
.site-footer__legal span { color: rgba(245, 242, 233, .5); }

a:focus-visible,
.gallery-button:focus-visible,
[data-gallery-track]:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

dialog {
  width: min(480px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  color: var(--ink);
  background: var(--cream);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(25, 27, 34, .35);
}
dialog::backdrop { background: rgba(30, 32, 39, .66); backdrop-filter: blur(5px); }
.dialog-content { position: relative; padding: 40px; }
.dialog-content h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 52px;
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.035em;
}
.dialog-content > p { color: var(--text-muted); line-height: 1.55; }
.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  color: var(--cream);
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  font-size: 24px;
}
.form-row { display: grid; gap: 8px; margin-top: 18px; font-size: 14px; font-weight: 700; }
.form-row input,
.form-row select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
}
.dialog-content .button { width: 100%; margin-top: 24px; border-radius: 10px; }
.form-consent {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.quick-actions {
  position: fixed;
  z-index: 20;
  right: 24px;
  bottom: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  visibility: hidden;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s var(--ease);
}
.quick-actions.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}
.quick-actions__trigger {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 2px;
}
.quick-actions__trigger::before {
  position: absolute;
  inset: -40% auto -40% -42%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 253, 248, .72), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-180%) skewX(-22deg);
}
.quick-actions::after {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(240, 100, 85, .58);
  content: "";
  opacity: 0;
  pointer-events: none;
}
.quick-actions.is-visible .quick-actions__trigger { animation: quick-action-nudge 7.6s ease-in-out infinite; }
.quick-actions.is-visible .quick-actions__trigger::before { animation: quick-action-shine 7.6s ease-in-out infinite; }
.quick-actions.is-visible::after { animation: quick-action-pulse 5.6s var(--ease) 1; }
.quick-actions__trigger:hover { background: var(--coral-hover); border-color: var(--coral-hover); transform: translateY(-2px); animation: none; }
@keyframes quick-action-pulse {
  0%, 68%, 100% { opacity: 0; transform: scale(.96); }
  10% { opacity: .72; transform: scale(.96); }
  36% { opacity: 0; transform: scale(1.16); }
}
@keyframes quick-action-nudge {
  0%, 64%, 100% { transform: translate(0, 0) rotate(0); }
  68% { transform: translate(-3px, -4px) rotate(-.65deg); }
  72% { transform: translate(3px, 1px) rotate(.75deg); }
  76% { transform: translate(-2px, -2px) rotate(-.45deg); }
  80% { transform: translate(1px, 0) rotate(.25deg); }
  84% { transform: translate(0, 0) rotate(0); }
}
@keyframes quick-action-shine {
  0%, 64% { opacity: 0; transform: translateX(-180%) skewX(-22deg); }
  68% { opacity: .86; }
  83%, 100% { opacity: 0; transform: translateX(540%) skewX(-22deg); }
}
.quick-actions__trigger:focus-visible,
.quick-actions__option:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
.quick-actions__menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: 244px;
  display: grid;
  gap: 12px;
  padding: 12px;
  color: var(--cream);
  background: var(--ink);
  border: 0;
  border-radius: 2px;
  box-shadow: 0 18px 44px rgba(25, 27, 34, .24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  visibility: hidden;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s var(--ease);
}
.quick-actions.is-open .quick-actions__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}
.quick-actions__menu .button {
  width: 100%;
  border-radius: 2px;
}
.quick-actions__menu .button--secondary {
  color: var(--cream);
  background: transparent;
  border-color: var(--line-light);
}
.quick-actions__menu .button--secondary:hover {
  color: var(--ink);
  background: var(--sage);
  border-color: var(--sage);
}
body:has(dialog[open]) .quick-actions { opacity: 0; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  .quick-actions,
  .quick-actions__trigger { transition: none; }
  .quick-actions.is-visible .quick-actions__trigger,
  .quick-actions.is-visible .quick-actions__trigger::before,
  .quick-actions.is-visible::after { animation: none; }
}

@media (max-width: 600px) {
  .quick-actions { right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); }
  .quick-actions__trigger { min-height: 56px; padding: 0 22px; font-size: 15px; }
  .quick-actions__menu { width: min(280px, calc(100vw - 32px)); padding: 10px; }
  .quick-actions__option { min-height: 52px; font-size: 15px; }
}

@media (min-width: 821px) and (max-height: 820px) {
  .editorial-copy { padding-top: 68px; padding-bottom: 32px; }
  .hero-text { margin-top: 20px; font-size: 16px; line-height: 1.48; }
  .actions { margin-top: 24px; }
  .editorial-visual { min-height: 520px; }
}

@media (max-width: 900px) {
  :root { --preview-height: 0px; --header-height: 116px; }
  .site-header__inner {
    min-height: var(--header-height);
    grid-template-columns: auto 1fr;
    grid-template-areas: "logo address" "nav nav";
    gap: 0 20px;
    padding: 8px 24px 0;
  }
  .site-brand { grid-area: logo; gap: 12px; }
  .site-logo { width: 55px; height: 46px; }
  .site-logo img { width: 136px; transform: translate(-41px, -33px); }
  .site-wordmark { width: 140px; height: 28px; }
  .site-wordmark img { width: 166px; transform: translate(-17px, -102px); }
  .site-nav {
    grid-area: nav;
    align-self: stretch;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(245, 242, 233, .12);
    font-size: 13px;
  }
  .site-address { grid-area: address; font-size: 11px; }
  .editorial-layout { grid-template-columns: 1fr; padding-right: 0; }
  .editorial-layout { padding-top: 24px; }
  .editorial-copy { padding: 48px 24px 40px; }
  .concept--editorial .hero-title { font-size: clamp(60px, 15vw, 88px); }
  .hero-title__first-line { white-space: normal; }
  .editorial-visual { min-height: 520px; margin: 0 20px 24px; }
  .editorial-photo { inset: 0 0 40px; }
  .editorial-photo__logo { width: min(56%, 290px); }
  .editorial-sage { right: 0; width: 82%; height: 64px; }
  .editorial-coral { left: -10px; }
  .services-head { padding: 56px 24px 48px; }
  .services-body { padding: 0 24px 48px; }
  .services h2 { font-size: clamp(64px, 12vw, 88px); }
  .service-row { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
  .service-row:nth-child(even) .service-copy,
  .service-row:nth-child(even) .service-media { order: initial; }
  .service-row:nth-child(even) .service-media,
  .service-media { width: min(100%, 480px); justify-self: center; }
  .service-copy { max-width: 620px; }
  .service-title { font-size: clamp(44px, 9vw, 60px); }
  .request-cta { min-height: 500px; padding: 80px 24px; }
  .request-cta__word { right: 24px; bottom: 28px; font-size: clamp(112px, 20vw, 168px); }
  .masters { padding: 80px 0 88px; }
  .masters__header { display: block; padding: 0 24px 36px; }
  .masters__intro { margin-top: 24px; }
  .masters__hint {
    display: block;
    margin: 16px 0 0;
    color: var(--forest);
    font-size: 13px;
    font-weight: 700;
  }
  .masters__grid {
    max-width: none;
    display: flex;
    gap: 16px;
    margin-top: 40px;
    padding: 0 24px 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 24px;
    scroll-snap-type: inline mandatory;
    scrollbar-color: var(--sage) transparent;
    scrollbar-width: thin;
  }
  .master-card {
    flex: 0 0 min(78vw, 340px);
    scroll-snap-align: start;
  }
  .works { padding: 80px 0 96px; }
  .works__header,
  .about__header,
  .contacts__header {
    display: block;
    padding-right: 24px;
    padding-left: 24px;
  }
  .works__header { margin-right: 0; margin-left: 0; }
  .section-intro { margin-top: 24px; }
  .works__grid {
    max-width: none;
    display: flex;
    gap: 16px;
    margin-top:  0;
    padding: 0 24px 28px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 24px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }
  .work-card {
    flex: 0 0 min(70vw, 360px);
    scroll-snap-align: start;
  }
  .works__gallery-controls { margin: 16px 24px 12px; }
  .works__videos { margin: 56px 24px 0; padding-top: 24px; }
  .video-gallery__track { gap: 16px; }
  .video-card { flex-basis: min(70vw, 300px); }
  .video-gallery__controls { margin-bottom: 12px; }
  .work-card:nth-child(2) { transform: none; }
  .reviews { padding: 72px 24px; }
  .reviews__widget { min-height: 220px; margin-top: 40px; }
  .about { padding: 80px 0 72px; }
  .about__header {
    width: auto;
    margin-right: 0;
    margin-left: 0;
  }
  .about__header-text { margin-top: 24px; }
  .about__brand,
  .interior-gallery { width: calc(100% - 48px); }
  .booking-cta { min-height: 460px; padding: 80px 24px; }
  .contacts { padding: 80px 0 88px; }
  .contacts__header { margin-right: 0; margin-left: 0; }
  .contacts__grid { grid-template-columns: 1fr; margin: 40px 24px 0; }
  .contact-map { min-height: 400px; }
  .site-footer { padding: 40px 24px; }
  .site-footer__inner { grid-template-columns: 1fr; align-items: start; gap: 28px; }
  .site-footer__legal { justify-content: flex-start; text-align: left; }
}

@media (max-width: 520px) {
  .editorial-layout { padding-top: 0; }
  .site-header__inner { padding-right: 20px; padding-left: 20px; }
  .editorial-copy { padding: 32px 20px 24px; }
  .editorial-copy::before { width: 48px; height: 5px; margin-bottom: 20px; }
  .hero-text { margin-top: 18px; font-size: 16px; line-height: 1.45; }
  .actions { align-items: stretch; flex-direction: column; gap: 8px; margin-top: 20px; }
  .button { width: 100%; min-height: 52px; }
  .hero-benefits {
    gap: 18px 20px;
    margin-top: 20px;
    border-top: 0;
  }
  .hero-benefits li {
    min-height: 46px;
    align-items: flex-start;
    padding: 0 0 0 14px;
    border-bottom: 0;
  }
  .hero-benefits li::before { top: 2px; width: 2px; height: 40px; }
  .benefit-full { display: none; }
  .benefit-mobile { display: flex; flex-direction: column; gap: 5px; }
  .benefit-mobile strong { color: var(--cream); font-size: 18px; font-weight: 750; line-height: 1; }
  .benefit-mobile span { color: rgba(245, 242, 233, .7); font-size: 12px; font-weight: 500; line-height: 1.25; }
  .editorial-visual { min-height: 420px; }
  .services-head { padding: 40px 20px 36px; }
  .services-head::after { top: -52px; right: 16px; font-size: 124px; }
  .services-body { padding: 0 20px 48px; }
  .services-head__inner::before { width: 48px; height: 5px; margin-bottom: 20px; }
  .services h2 { font-size: 58px; }
  .service-row { gap: 20px; padding: 40px 0; }
  .service-title { font-size: 40px; line-height: .96; }
  .service-description { margin-top: 18px; font-size: 16px; line-height: 1.55; }
  .service-price { margin-top: 20px; }
  .service-price strong { font-size: 32px; }
  .services-note { margin-top: 24px; font-size: 12px; }
  .request-cta { min-height: 520px; padding: 64px 20px 72px; }
  .request-cta__word {
    right: 20px;
    bottom: 24px;
    font-size: clamp(70px, 20vw, 96px);
    line-height: .82;
  }
  .request-cta__inner::before { width: 48px; height: 5px; margin-bottom: 20px; }
  .request-cta h2 { font-size: clamp(50px, 14vw, 64px); line-height: .92; }
  .request-cta__text { margin-top: 20px; font-size: 16px; line-height: 1.5; }
  .request-cta__actions { flex-direction: column; gap: 8px; margin-top: 28px; }
  .request-cta .button { min-width: 0; }
  .masters { padding: 64px 0 72px; }
  .masters__header { padding: 0 20px 32px; }
  .masters__heading::before { width: 48px; height: 5px; margin-bottom: 20px; }
  .masters h2 { font-size: 58px; }
  .masters__intro { margin-top: 18px; font-size: 16px; }
  .masters__grid { gap: 12px; margin-top: 32px; padding: 0 20px 14px; scroll-padding-inline: 20px; }
  .master-card { flex-basis: min(82vw, 320px); }
  .master-card h3 { font-size: 38px; }
  .master-card__facts { gap: 16px; }
  .works { padding: 64px 0 72px; }
  .works__header,
  .about__header,
  .contacts__header { padding: 0 20px 32px; }
  .section-title-wrap::before { width: 48px; height: 5px; margin-bottom: 20px; }
  .section-title { font-size: 58px; }
  .section-intro { margin-top: 18px; font-size: 16px; }
  .works__grid { gap: 12px; margin-top:  0; padding: 0 20px 16px; scroll-padding-inline: 20px; }
  .work-card { flex-basis: min(82vw, 320px); }
  .works__gallery-controls { margin: 16px 20px 12px; }
  .works__videos { margin: 48px 20px 0; padding-top: 20px; }
  .video-gallery__track { gap: 12px; }
  .video-card { flex-basis: min(82vw, 300px); }
  .reviews { padding: 64px 20px; }
  .reviews__copy { margin-top: 18px; font-size: 16px; }
  .reviews__widget { min-height: 210px; margin-top: 32px; padding: 20px 0; }
  .about { padding: 64px 0 64px; }
  .about__header-text { margin-top: 18px; font-size: 16px; line-height: 1.58; }
  .about__brand,
  .interior-gallery { width: calc(100% - 40px); }
  .about__brand { min-height: 240px; margin-top: 32px; padding: 20px; }
  .about__brand img { height: 200px; }
  .interior-gallery { margin-top: 40px; }
  .interior-gallery__head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .interior-gallery__title { font-size: 38px; }
  .interior-frame { height: 220px; }
  .booking-cta { min-height: 480px; padding: 64px 20px 72px; }
  .booking-cta::after { right: -20px; font-size: 100px; }
  .booking-cta h2 { font-size: clamp(50px, 14vw, 64px); line-height: .92; }
  .booking-cta__text { margin-top: 20px; font-size: 16px; }
  .booking-cta .button { min-width: 0; margin-top: 28px; }
  .contacts { padding: 64px 0 72px; }
  .contacts__grid { gap: 32px; margin: 32px 20px 0; }
  .contact-list dd { font-size: 30px; }
  .contact-map { min-height: 360px; }
  .contact-map__body { min-height: 300px; }
  .site-footer { padding: 32px 20px; }
  .site-footer__legal { display: grid; gap: 10px; }
  .dialog-content { padding: 32px 22px; }
}

@media (max-width: 360px) {
  .site-header__inner { gap: 0 12px; padding-right: 16px; padding-left: 16px; }
  .site-brand { gap: 10px; }
  .site-wordmark { width: 110px; height: 24px; }
  .site-wordmark img { width: 140px; transform: translate(-12px, -86px); }
}


@media (max-width: 900px) {
  .section-side { gap: 20px; margin-top: 24px; }
  .section-side .section-intro { margin-top: 0; }
  .works__grid { scrollbar-width: none; }
  .work-card { max-height: min(56svh, 480px); }
  .about__intro {
    width: auto;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 0 24px;
    padding-bottom: 40px;
  }
  .about__brand {
    width: auto;
    min-height: 280px;
    margin: 0;
    padding: 24px;
  }
  .about__brand img { height: 240px; }
}

@media (max-width: 520px) {
  .gallery-controls {
    grid-template-columns: 44px minmax(52px, auto) 44px;
    gap: 6px;
  }
  .gallery-controls.gallery-controls--arrows {
    grid-template-columns: repeat(2, 44px);
    gap: 12px;
  }
  .gallery-button { width: 44px; height: 44px; }

  .lightbox__shell { padding: 12px 12px 16px; }
  .lightbox__header {
    min-height: 52px;
    grid-template-columns: minmax(0, 1fr) auto 48px;
    gap: 12px;
  }
  .lightbox__header.lightbox__header--no-count { grid-template-columns: minmax(0, 1fr) 48px; }
  .lightbox__title {
    overflow: hidden;
    font-size: 24px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .lightbox__close { width: 44px; height: 44px; }
  .lightbox__stage {
    position: relative;
    display: block;
    padding-top: 12px;
  }
  .lightbox__figure {
    height: calc(100svh - 92px);
    gap: 8px;
  }
  .lightbox__image {
    max-width: 100%;
    max-height: calc(100% - 40px);
  }
  .lightbox__control {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 44px;
    height: 52px;
    background: rgba(48, 50, 59, .78);
    transform: translateY(-50%);
  }
  .lightbox__control--prev { left: 4px; }
  .lightbox__control--next { right: 4px; }
  .lightbox__caption {
    max-width: calc(100% - 40px);
    font-size: 12px;
  }

  .work-card {
    height: min(56svh, 426px);
    max-height: none;
    flex-basis: auto;
    width: auto;
  }
  .about__intro {
    gap: 32px;
    margin: 0 20px;
    padding-bottom: 32px;
  }
  .about__brand {
    width: auto;
    min-height: 240px;
    margin: 0;
    padding: 20px;
  }
  .about__brand img { height: 200px; }
  .interior-gallery__head {
    align-items: center;
    flex-direction: row;
    gap: 16px;
  }
  .interior-frame { height: min(52svh, 300px); }
}

.interior-frame {
  height: auto;
  flex-basis: clamp(230px, 20vw, 300px);
  aspect-ratio: 3 / 4;
}

@media (max-width: 900px) {
  .interior-frame { height: auto; flex-basis: min(62vw, 300px); }
}

@media (max-width: 520px) {
  .interior-frame { height: auto; flex-basis: min(72vw, 280px); }
}

@media (max-width: 480px) {
  .interior-frame { height: auto; flex-basis: min(76vw, 280px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
